码迷,mamicode.com
首页 > 系统相关 > 详细

Linux- Nginx域名重定向

时间:2018-11-27 17:07:13      阅读:332      评论:0      收藏:0      [点我收藏+]

标签:http   server   重定向   ane   rewrite   perm   htm   conf   多个   

更改test.com.conf
server
{
listen 80;
server_name test.comtest1.comtest2.com;
index index.html index.htm index.php;
root /data/wwwroot/test.com;
if ($host != ‘test.com‘ ) {
rewrite ^/(.*)$ http://test.com/$1 permanent; #如果访问的不是test.com,则跳转到这边,permanent代表301
}
}
? server_name后面支持写多个域名,这里要和httpd的做一个对比
? permanent为

Linux- Nginx域名重定向

标签:http   server   重定向   ane   rewrite   perm   htm   conf   多个   

原文地址:http://blog.51cto.com/13451715/2322350

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