html页面跳转
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$ [NC]
RewriteRule ^(.*)$ http://www.dumiqiu.cn/$1 [L,R=301]
发表评论: