Dreamhost 提示No input file specified. 的解决的方法
Posted wzjhoutai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Dreamhost 提示No input file specified. 的解决的方法相关的知识,希望对你有一定的参考价值。
假设开启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. 的解决的方法的主要内容,如果未能解决你的问题,请参考以下文章
wordpress提示No input file specified的解决办法
nginx提示No input file specified怎么办
LNMP提示Nginx PHP “No input file specified”错误的解决办法
解决 php 报错 open_basedir restriction in effect或者nginx提示No input file specified怎么办