rewrite - 求一個nginx個性網域的重寫規則
phpcn_u1582
phpcn_u1582 2017-05-16 17:23:29
0
2
720

想法:
http://abc.ccav.com rewrite 到http://www.ccav.com/uid/abc
http://abc.ccav.com/article/index/index rewrite 到http://www.ccav.com/article/index/index/uid/abc
http://abc.ccav.com/article/index/show/id/1 rewrite 到http://www .ccav.com/article/index/show/uid/abc/id/1
http://abc.ccav.com/shop/index/index rewrite 到http://www.ccav.com/shop/ index/index/uid/abc
http://abc.ccav.com/shop/index/show/id/1 rewrite 到http://www.ccav.com/shop/index/show/uid/abc /id/1
自己實際試了幾下,都沒成功,求大神指點

phpcn_u1582
phpcn_u1582

全部回覆(2)
大家讲道理

自己解決了

server {
    listen 80;
    #rewrite_log on;
    #error_log /datas/logs/ccav_rewrite.log notice;
    server_name *.u.ccav.com;
    location ~ ^/(images|styles|scripts|uploads)/
    {
        proxy_redirect        off;
        proxy_set_header    Host   www.ccav.com;
        proxy_pass      http://127.0.0.1:80;
    }
    location / {
        set $uid default;
        if ( $http_host ~* "^(.*)\.u\.ccav\.com") {
            set $uid ;
        }
        rewrite ^/article/index/show/id/([0-9]+)/?$  /article/index/show/uid/$uid/id/ break;
        rewrite ^/article/index/index/?$  /article/index/index/uid/$uid break;
        rewrite ^/article/index/category/cid/([0-9]+)/?$  /article/index/category/uid/$uid/cid/ break;
        proxy_pass http://www.ccav.com;
    }
}

Ty80

這是不重寫,應該叫跳轉,可以做301,當$host = 'abc.ccav.com' 時,^/(.*)$ http://www.ccav.com/$1 permanent; 思路就是這樣的

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!