Nginx域名跳转-rewrite

在nginx中可以对域名进行跳转如:所有对www.aaa.com的访问都redirect到www.bbb.com

1
2
3
4
5
6
7
8
9
10
server
   {
   listen 80;
   server_name www.bbb.com;
   index index.htm index.php;
   root  /export/home/www
   if ($host = "www.aaa.com"){
   rewrite ^/(.*)$ http://www.bbb.com/$1 permanent;
    }
  }

符号解释:
^ 匹配字符串的开始
/ 匹配域名的分隔符
. 匹配除换行符以外的任意字符
重复零次或更多次
(.
) 匹配任意字符
.* 匹配任意文本
$ 匹配字符串的结束

  • Nginx 禁止ip访问
1
2
3
4
5
server{
listen 80 default;
server_name _;
return 403;
}
分享到