码迷,mamicode.com
首页 > 其他好文 > 详细

nginx设置301跳转

时间:2015-05-26 16:28:57      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:配置文件   nginx   301   unknown   

在server段域名下设置:

if ( $host = ‘xxxx.com‘ ) {        
     rewrite ^/(.*)$ http://www.xxxx.com/$1 permanent; 
}

permanent – 返回永久重定向的HTTP状态301

这里要注意的是,nginx语法检测特别严格,if和后面括号以及变量等号这些元素都要有空格。

如果没有空格的话会报[emerg] unknown directive “if($host!=”这样的错误。


检查配置是否正确

/usr/local/nginx/sbin/nginx -t

提示:

the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
configuration file /usr/local/nginx/conf/nginx.conf test is successful

说明配置文件无错误

/usr/local/nginx/sbin/nginx -s reload

重启nginx即可。

nginx设置301跳转

标签:配置文件   nginx   301   unknown   

原文地址:http://xtceetg.blog.51cto.com/5086648/1655192

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!