Warning: count(): Parameter must be an array or an object that implements Countable in /www/wwwroot/mdaeo.org/usr/plugins/AMP/Action.php on line 388
WordPress的Nginx 301重定向

WordPress的Nginx 301重定向

2010-11-17T13:15:50

用301重定向,将原来域名重定向到12host.cn来传递RP,和不丢失流量.

但由于我的VPS,用的是Nginx做web服务器,Nginx是不支持.htaccess的.不过在Nginx中进行301重定向(301 redirect)也是非常容易的.

例如我要永久将 12host.cn 重定向到 www. 12host.cn 有两钟方法:

1.不是访问12host.cn的域名都转到www.12host.cn

 server {
 server_name12host.cn  www.12host,cn  59vps.com;

if ($host != '12host.cn' ) {
rewrite ^/(.*)$ http://www.12host.cn/$1 permanent;
}
...
}
 

2.直接给12host.cn开一条server规则

server {
server_name 12host.cn;
rewrite ^/(.*) http://www.12host.cn/$1 permanent;
}
当前页面是本站的「Baidu MIP」版。发表评论请点击:完整版 »
因本文不是用Markdown格式的编辑器书写的,转换的页面可能不符合MIP标准。