Nginx - Redirect
我們將來如有需求,須要將domain name 轉換時,如http://www.test.com
自動導引http://test.com 可以設定如下
1. 編輯nginx.conf檔案
# vi /usr/local/nginx/conf/nginx.conf
在 location / {
……….
……….
}加入如下
if ($host = 'www.catchlink.com' ){
rewrite ^/(.*)$ http://catchlink.com/$1 permanent;
}
2. 重啟Naginx
# /usr/local/nginx/sbin/nginx -s reload
這樣就會將http://www.test.com 重導到http://test.com了!!!