tp5 No input file specified.

Posted 不会敲代码

tags:

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

我的是windows10 系统,phpstudy 环境 ,配置的本地虚拟机,tp5.1

访问跟目录正常

技术分享图片

访问次级页面报错

技术分享图片

对于 tp5  No input file specified.  的问题,其实是 .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>

 //只需样改成这样

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

修改完之后访问正常

技术分享图片



















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