Blogger Information
Blog 7
fans 1
comment 0
visits 11001
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
tp5 No input file specified. 的问题
漫漫人生路
Original
5431 people have browsed it

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

访问跟目录正常

TIM截图20180417083736.png

访问次级页面报错

TIM截图20180417083753.png

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

修改完之后访问正常

TIM截图20180417083836.png

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post