這篇文章介紹的內容是關於phpstudy php5.4以上版本偽靜態設置,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
http: //www.thinkphp.cn/topic/35958.html
#預設的
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
規則在apache fastcgi模式下會導致No input file specified.
修改成
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
#就OK,位址正常重寫。
以上是phpstudy php5.4以上版本偽靜態設定的詳細內容。更多資訊請關注PHP中文網其他相關文章!