nginx设置301重定向
可以直接在nginx的配置文件中加if ($host = paomianshi.com) { return 301 http://www.$host$request_uri; }
apache设置301重定向
在网站根目录新建.htaccess文件,加入以下内容(需要开启mod_rewrite)
RewriteEngine On
RewriteCond %{HTTP_HOST} ^paomianshi.com [NC]
RewriteRule ^(.*)$ http://www.paomianshi.com/$1 [L,R=301]
IIS设置301重定向
Internet信息服务管理器 -> 虚拟目录 -> 重定向到URL,输入http://www.paomianshi.com/,并选择资源的永久重定向
PHP代码实现301重定向
header(”HTTP/1.1 301 Moved Permanently”);
header(”Location: http://www.paomianshi.com/”);
exit();
文章评论