1. 程式人生 > >thinkphp5 偽靜態後出現No input file specified.問題

thinkphp5 偽靜態後出現No input file specified.問題

write input 可能 access 文件 新頁面 spec pat 情況下

在入口文件同級的 .htaccess 文件中的

RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]

在默認情況下可能會導致訪問頁面報:No input file specified.

將上面一句修改為:

RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]

後刷新頁面就可以正常訪問了

thinkphp5 偽靜態後出現No input file specified.問題