-----------------------------------------
php-5.3
Linux (CentOS-6.3)环境下隐藏 index.php 后无法访问 404 Not Found
Apache-2.2.15 开启了重写模块 php配置 URL_MODEL => 2
.htaccess 文件 和入口文件目录一致
.htaccess 内容
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
无法访问,加上 index.php 才可以访问,不知那里配置有问题,找了很多资料都无解
最佳答案
