nginx 域名rewrite跳轉

轉自:http://blog.csdn.net/xingfujie/article/details/7337832php

需求:nginx規則,全部對OA.bccom.info的訪問,redirect到uc.qycn.com,謝謝。
◆ 寫法:
server
   {
   listen 80;
   server_name uc.qycn.com;
   index index.htm index.php;
   root  /export/home/www
   if ($host = "oa.bccom.info"){
   rewrite ^/(.*)$ http://uc.qycn.com/$1 permanent;
    }
}

【符號註釋】
^ 匹配字符串的開始
/ 匹配域名的分隔符
. 匹配除換行符之外的任意字符
* 重複零次或更屢次
(.*) 匹配任意字符
.* 匹配任意文本
$ 匹配字符串的結束nginx

相關文章
相關標籤/搜索