码迷,mamicode.com
首页 > 其他好文 > 详细

Dreamhost 提示No input file specified. 的解决办法

时间:2014-06-25 00:23:53      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:php   dreamhost   

bubuko.com,布布扣

如果开启FastCGI模式,.htaccess无法生效,一直提示no input file specified。
因为在Fastcgi模式下,php不支持rewrite的目标网址的PATH_INFO的解析 
ThinkPHP运行在URL_MODEL=2时,会出现 No input file specified.的情况, 
这时可以修改网站目录的.htaccess文件:(by default7#zbphp.com)
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] 
改为 RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L] 
.htaccess的内容为: 
    RewriteEngine on 
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f 
    RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]

Dreamhost 提示No input file specified. 的解决办法,布布扣,bubuko.com

Dreamhost 提示No input file specified. 的解决办法

标签:php   dreamhost   

原文地址:http://blog.csdn.net/default7/article/details/33342957

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