关于ThinkPHP5.0在Apache下隐藏index.php报错的问题

时间:2022-07-16 11:03:28

官方手册提供的.htaccess内容如下:

<IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] </IfModule> 

这种情况下可能会出现:No input file specified 的错误


解决方案:

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

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