在Codeigniter中删除index.php时出错

时间:2016-05-20 10:40:35

标签: php .htaccess codeigniter frameworks

当我尝试使用.htaccess文件中的以下代码删除index.php格式的Codeigniter网址时,我的项目文件夹会隐藏。

.htaccess代码(来自codeigniter用户指南):

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]

我的localhost当我没有使用上面的代码时(OK中的所有内容): enter image description here

当我将该代码添加到我的localhost文件时,我的.htaccess(我无法访问我的项目文件夹): enter image description here

1 个答案:

答案 0 :(得分:0)

解决方案:

我忘了在wampp服务器上从我的Apache模块中启用rewrite-module,这就是问题!

谢谢大家。