专注于云服务器
VPS主机优惠测评
国内免备案虚拟主机

解决PHP5.6版本“No input file specified”的问题

问题描述:使用TP框架做项目时,在启用REWRITE的伪静态功能的时候,首页可以访问,但是访问其它页面的时候,就提示:“No input file specified.”
原因在于使用的PHP5.6是fast_cgi模式,而在某些情况下,不能正确识别path_info所造成的错误
默认的.htaccess里面的规则:

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

“No input file specified.”,是没有得到有效的文件路径造成的。
修改后的伪静态规则,如下:

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

仅仅就是在正则结果“/$1”前面多加了一个“?”号,问题也就随之解决了。


赞(0) 打赏
转载请注明出处:晓波笔记 » 解决PHP5.6版本“No input file specified”的问题
分享到: 更多 (0)
megalayer云服务器

raksmart云服务器

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

晓波笔记-VPS主机,云服务器优惠促销测评

QQ:87304394

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏