本站绑定了wyg8.com和www.wyg8.com,这样对搜索引擎很不友好,导致域名的PR值分散到两个URL上了。301重定向就可以解决这个问题,把不带www和带www的域名合并到一起。下面以本站为例,做了LNMP环境下的nginx域名301重定向教程。
直接用VI编辑器打开 /usr/local/nginx/conf/vhost/wyg8.com.conf 这个配置文件,代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
server { listen 80; server_name wyg8.com www.wyg8.com; index index.html index.htm index.php default.html default.htm default.php; root /home/wwwroot/wyg8.com; include typecho.conf; location ~ .*.(php|php5)?$ { fastcgi_pass unix:/tmp/php-cgi.sock; fastcgi_index index.php; include fcgi.conf; } location ~ .*.(gif|jpg|jpeg|png|bmp|swf)$ { expires 30d; } location ~ .*.(js|css)?$ { expires 12h; } access_log off; } |
?
现在把 server_name onelone.com www.wyg8.com; 这行的 wyg8.com 删掉。再在后面加上下面代码:
1 2 3 4 |
server { server_name wyg8.com; rewrite ^(.*) http://www.wyg8.com$1 permanent; } |
?最后的效果图如下:
改完后重启nginx就生效了。虽然做了301重定向,但是DNS处还是要做A记录解析的。完成后,试试效果,打开wyg8.com就会自动跳转到www.wyg8.com。
转载请注明:网页阁吧 » LNMP下Nginx实现域名301重定向教程[图解]