本站定了www.it.net.cn和it.net.cn两个域名,这种绑定对搜索引擎不友好,导致域名的PR值分散到两个URL上。那么如何解决呢?可以通过301重定向解决这个问题,把不带www和带www的域名合并到一起,指向同一个域名。这种301重定向在apache下可以通过.htaccess文档编辑相关命令。本博搭建的是LNMP环境,其中N是指nginx,在nginx下是无法通过.htaccess文档重定向的,需要通过rewrite 命令进行域名301重定向。 第一步:用WinSCP软件打开 /usr/local/nginx/conf/vhost/www.it.net.cn.conf(注:换成你服务器上的文件名称),进入/usr/local/nginx/conf/vhost/,点击www.it.net.cn.conf文件>>“右键”>>”编辑”,或下载到本地编辑。 打开之后大概显示以下内容: server { listen 80; server_name www.it.net.cn it.net.cn; index index.html index.htm index.php default.html default.htm default.php; root /home/wwwroot/wwwitnet; include wordpress.conf; location ~ .*\.(php|php5)?$ { try_files $uri =404; 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 www.it.net.cn it.net.cn;”中的“it.net.cn”,然后在所有代码最后添加以下代码:
server { server_name it.net.cn; rewrite ^(.*) http://www.it.net.cn$1 permanent; } 第三步:重启nginx,使用Putty软件远程登陆服务器,使用命令/etc/init.d/nginx restart 或 /root/lnmp restart (责任编辑:IT) |