Linux- Nginx域名重定向

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux- Nginx域名重定向相关的知识,希望对你有一定的参考价值。

更改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域名重定向的主要内容,如果未能解决你的问题,请参考以下文章

Linux10.5 Nginx域名重定向

Linux学习总结(四十)lnmp之nginx安装 用户认证 域名重定向

Nginx用户认证Nginx域名重定向

nginx域名重定向 实现新旧域名过渡

域名重定向

nginx之域名重定向