文章目录[隐藏]
- 有需要服务器方面的需求和咨询,可以联系博主 QQ 7271895
- 之前写过使用宝塔,配置网站会出现NO input file specified的解决方法。这次再次搜集网络资料共享出来
有需要服务器方面的需求和咨询,可以联系博主 QQ 7271895
之前写过使用宝塔,配置网站会出现NO input file specified的解决方法。这次再次搜集网络资料共享出来
APACHE服务器出现No input file specified.解决方案 thinkcmf程序默认的.htaccess里面的规则:
<IfModule mod_rewrite.c> 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> RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L] </IfModule>
就是正则结果“/$1”前面多加了一个“?”号。。
如果有不懂的、欢迎加入我们学派吧。一起学习交流。右上角站长群