html網頁跳轉代碼
來源:懂視網
責編:小采
時間:2020-11-27 14:46:09
html網頁跳轉代碼
html網頁跳轉代碼:將以下代碼存為默認首頁文件如index.html,放在根目錄下即可。 不隱藏轉向后地址 <html> <head> <title>Redirect</title> <meta http-equiv="refresh" content="0;ur
導讀html網頁跳轉代碼:將以下代碼存為默認首頁文件如index.html,放在根目錄下即可。 不隱藏轉向后地址 <html> <head> <title>Redirect</title> <meta http-equiv="refresh" content="0;ur

將以下代碼存為默認首頁文件如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="new site" scrolling="auto" noresize>
</frameset>
</html>
聲明:本網頁內容旨在傳播知識,若有侵權等問題請及時與本網聯系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
html網頁跳轉代碼
html網頁跳轉代碼:將以下代碼存為默認首頁文件如index.html,放在根目錄下即可。 不隱藏轉向后地址 <html> <head> <title>Redirect</title> <meta http-equiv="refresh" content="0;ur