thinkphp5安装php高版本出现No input file specified.解决

<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>

  .htaccess 文件加上一个英文问号重启apache。

原文地址:https://www.cnblogs.com/qinglin/p/8743405.html