重定向到其餘域名,URL保持不變

apache規則裏[L,P]中P的意思是強制爲代理,請求的URL不會變了

Nginx沒有強制重寫爲代理的參數,可使用一種變通的方法location:

html

    location ~ ^/article/ {
           rewrite ^/article/([^/\.]+)-p([0-9]+)(/?)$ /c/article/$1/article-list/$2.shtml  break;
           proxy_pass  http://csdn.net;
    }
相關文章
相關標籤/搜索