Thinkphp中出现 No input file specified

Thinkphp3.2.3模板输出中出现 No input file specified

 

查了网上很多资料 

最终解决办法

 

解决办法很简单如下:

打开.htaccess 在RewriteRule 后面的index.php教程后面添加一个“?”

原来的代码如下

<IfModule mod_rewrite.c>
  Options +FollowSymlinks
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>

修改之后的代码如下

 

<IfModule mod_rewrite.c>
  Options +FollowSymlinks
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>

  

上一篇:Java kotlin报错The minCompileSdk (31) specified in a dependency's AAR metadata解决方法


下一篇:The user specified as a definer ('root'@'%') does not exist