您好,登錄后才能下訂單哦!
小編給大家分享一下phpStudy2018 Nginx如何實現支持WordPress自定義鏈接的方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
只適合Windows本地環境(服務器上沒試過),默認phpStudy2018 Nginx并不支持WordPress自定義鏈接,可以通過修改配置文件支持讓其支持。
用文本編輯工具打開PHPTutorial\nginx\conf目錄的nginx.conf文件,修改前做個備份,以免修改失誤,造成phpStudy無法啟動。
搜索autoindex on,找到類似:
server { listen 80; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; root "I:/phpStudy/PHPTutorial/WWW"; location / { index index.html index.htm index.php l.php; autoindex on; }
在其下面添加設置代碼,有兩種情況:
一、WordPress程序直接安裝在PHPTutorial\WWW目錄中:
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 (.*) /index.php; }
二、WordPress程序安裝在PHPTutorial\WWW子目錄中,比如:wordpress:
if (-f $request_filename/wordpress/index.html){ rewrite (.*) $1/wordpress/index.html break; } if (-f $request_filename/wordpress/index.php){ rewrite (.*) $1/wordpress/index.php; } if (!-f $request_filename){ rewrite (.*) /wordpress/index.php; }
修改其中的wordpress為你子目錄名稱。
最后重啟phpStudy,試試設置自定義鏈接是否可以打開了。
phpStudy 最新版本是8.0,此方法并未在此版本中試過。
以上是phpStudy2018 Nginx如何實現支持WordPress自定義鏈接的方法的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。