2012-12-25 tomeqiu
技术原创
1、最简单的
<head>
<meta http-equiv="refresh" content="2;url=/blog/index.php">
</head>
2、PHP
<?php
Header("HTTP/1.1 301 Moved Permanently");
Header("Location:/blog/index.php");
?>
3、.htaccess
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.dumiqiu.cn...
阅读全文>>
标签: 页面跳转 html
评论(0)
浏览(784)