No input file specified. ThinkPHP 报错

修改public目录中.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]
  RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>

猜你喜欢

转载自blog.csdn.net/qq_34272964/article/details/79879689