我是codeigniter的新手。我在 localhost/path/learn_ci 安装了我的 codeigniter。
我已按照 codeigniter wiki 中给出的所有步骤进行操作。这是我的 .htaccess 文件。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /learn_ci/index.php/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>
我还根据需要更改了配置文件。但是当我尝试访问
我收到这个错误
“在此服务器上找不到请求的 URL /learn_ci/index.php/welcome”
我已经仔细检查了... Apache 中的 mod_rewrite 模块已打开。
RewriteBase 解决方案也不起作用。难道我做错了什么??