html 網頁跳轉代碼

字號:


    將以下代碼存為默認首頁文件如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" rows="0" frameborder="0">
    <frame name="main" src="new site" scrolling="auto" noresize>
    </frameset>
    </html>