下面示例将www.example.com跳转到example.com,如果你需要跳转到www域名,相应修改一下下面代码即可。Nginx 301跳转设置其实很简单,首先打开站点.conf配置文件,文件路径一般是:/usr/local/nginx/conf/vhost/,然后下载本地或者使用vi修改都行。
找到server代码段,如下相应修改即可:
server { listen 80; server_name www.example.com example.com; if ($host ~* www.example.com) { rewrite ^/(.*)$ http://example.com/$1 permanent; } index index.html index.htm index.php default.html default.htm default.php; root /home/wwwroot/example.com; include none.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 /home/wwwlogs/example.com.log example.com; }
其中上面添加到跳转代码是:
if ($host ~* www.example.com) { rewrite ^/(.*)$ http://example.com/$1 permanent; }
设置后重启Nginx即可生效,可以使用http://tool.chinaz.com/pagestatus/查询一下返回状态码是否是301。如果跳转访问错误,请确保你域名有正确解析。 |
|