No input file specified
按照TP官网的做法:
<IfModule mod_rewrite.c>Options +FollowSymlinks -MultiviewsRewriteEngine OnRewriteCond %{REQUEST_FILENAME} !-dRewriteCond %{REQUEST_FILENAME} !-f#RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] 这是官网给出的RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1] 改成些行就好了</IfModule>
把最后一行
RewriteRule ^(.)$ index.php/$1 [QSA,PT,L] 改成
RewriteRule ^(.)$ index.php [L,E=PATH_INFO:$1]
