網站二級目錄或者子目錄安裝WordPress偽靜態規則設定方法,伺服器為nginx

技術小胖子發表於2017-11-16

前幾天寫的那個部落格有個bug,導致後臺無法進入,發現是302問題。

http://ningyuqiao.blog.51cto.com/5581274/1615552

比如:網站為http://ningyuqiao.51cto.com/blog

1
2
3
4
5
6
7
8
9
10
11
location /blog/ {
if (-f $request_filename/index.html){
                rewrite (.*) $1/index.html break;
        }
if (-f $request_filename/index.php){
                rewrite (.*) $1/index.php;
        }
if (!-f $request_filename){
                rewrite (.*) /blog/index.php;
        }
}

      本文轉自ning1022 51CTO部落格,原文連結:http://blog.51cto.com/ning1022/1616023,如需轉載請自行聯絡原作者


相關文章