1. 程式人生 > >nginx-正則表達式-重定向

nginx-正則表達式-重定向

gin nginx nbsp 參數 10.8 html 定向 表達 index

匹配任何html結尾的訪問,然後重定向到http

rewrite ^(.*)\.html$ http://10.86.255.119$request_uri;

匹配任何index?這樣的參數,然後重定向到相應的http

rewrite ^(.*)index\.php\?$ http://10.86.255.119$request_uri;

nginx-正則表達式-重定向