解决跳转出现 No input file specified.

Posted 风吹墨里香

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决跳转出现 No input file specified.相关的知识,希望对你有一定的参考价值。

项目根目录中.htaccess文件修改为:

<IfModule mod_rewrite.c>
  Options +FollowSymlinks
  RewriteEngine On

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

以上是关于解决跳转出现 No input file specified.的主要内容,如果未能解决你的问题,请参考以下文章