因为在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的内容为:
<IfModule mod_rewrite.c>
Options +
FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-
d
RewriteCond %{REQUEST_FILENAME} !-
f
RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,
L]
</IfModule>
转载于:https://www.cnblogs.com/hgj123/p/4987083.html
相关资源:JAVA上百实例源码以及开源项目