报错No Input file specified
作者:互联网
apache重写模式错误导致
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
改成
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]
标签:RewriteRule,php,PT,REQUEST,FILENAME,报错,specified,Input,RewriteCond 来源: https://blog.51cto.com/u_13481146/2820707