码迷,mamicode.com
首页 > Web开发 > 详细

ThinkPHP隐藏index.php出现No input file specified的解决方法

时间:2015-06-07 12:21:53      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

因为在Fastcgi模式下,php不支持rewrite的目标网址的PATH_INFO的解析
ThinkPHP运行在URL_MODEL=2时,会出现 No input file specified.的情况,
这时可以修改网站目录的.htaccess文件:
 
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] 
改为 RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L] 
 
完整的.htaccess代码为:
  1. <IfModule mod_rewrite.c>
      Options +FollowSymlinks
      RewriteEngine On
    
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteCond %{REQUEST_FILENAME} !-f
      #RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
      RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]
    </IfModule>

     

 
出处:http://tanning555.blog.163.com/blog/static/529751712013371011142/





ThinkPHP隐藏index.php出现No input file specified的解决方法

标签:

原文地址:http://www.cnblogs.com/lovelp/p/thinkphp_index_hidden.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!