输入banner图图片脚本导航/分类

apache配置伪静态并隐藏index.php文件

本文主要和大家分享apache配置伪静态并隐藏index.php文件的实例,希望能帮助到大家。

no input file specified错误解决办法:

在网站根目录建.htaccess文件

方法一:

在RewriteRule后面的index.php之后加?

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]

</IfModule>

方法二:

在php.ini中找到

;cgi.force_redirect = 1

去掉前面的分号并且把后面的1改为0

相关推荐:

PHP针对伪静态注入实例分享

关于php伪静态配置的方法详解

php如何实现伪静态的几种方式总结

以上就是apache配置伪静态并隐藏index.php文件的详细内容,更多请关注Gxl网其它相关文章!