html 网页跳转代码
发布时间:2020-03-21 03:13:23 所属栏目:MsSql教程 来源:站长网
导读:将以下代码存为默认首页文件如index.html,放在根目录下即可。 不隐藏转向后地址 html head titleRedirect/title meta http-equiv=refresh content=0;url=new site /head body /body /html 隐藏转向后地址 html head titleRedirect/title /head frameset fr
将以下代码存为默认首页文件如index.html,放在根目录下即可。 不隐藏转向后地址 <html> <head> <title>Redirect</title> <meta http-equiv="refresh" content="0;url=new site"> </head> <body> </body> </html> 隐藏转向后地址 <html> <head> <title>Redirect</title> </head> <frameset framespacing="0" border="0" rows="0" frameborder="0"> <frame name="main" src=http://www.jb51.net/web/"new site" scrolling="auto" noresize> </frameset> </html> (编辑:威海站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |