1. 程式人生 > >WordPress設定固定連結出現404 Nginx解決

WordPress設定固定連結出現404 Nginx解決

wordpress設定固定連結後無法頁面無法正常訪問,出現404錯誤,經過查詢資料先得知解決方案,方法如下,只針對nignx:

 

1、開啟nginx配置檔案

$ vim /usr/local/nginx/conf/nginx.conf

2、如果wordpress安裝在網站根目錄,在server中新增

location / {
                if (!-e $request_filename) {
                rewrite (.*) /index.php;
                }
        }

3、如果wordpress安裝在網站二級目錄,在server中新增,下面是安裝在二級目錄cn中,等效替換

location /cn/ {
                if (!-e $request_filename) {
                rewrite (.*) /cn/index.php;
                }
        }

4、最後重啟nginx

/etc/init.d/nginx restart