嘿,我正在尝试让一个项目工作,但我在重写模块时遇到了问题。
我在 Windows XP 上运行 Wamp。我更改了 httpd.conf 以将 localhost 的根更改为:
DocumentRoot "C:/wamp/www/project/docroot/"
我有 htaccess
RewriteEngine On
RewriteBase /
我的 Apache 已激活重写模块。
我在 config.php 中的 base_url() 是 routes.php 中的“ http://localhost/ ”
我有:
$route['default_controller'] = "home";
$route['our-recipes'] = "recipes";
and more pairs
当我将浏览器指向http://localhost/时,我得到了我网站的主页,但是当我点击任何内部链接(如“our-recipes”)时,它会加载,但我得到的是相同的主页,新的 url 在位置栏。如果我尝试访问“ http://localhost/recipes ”,我会得到相同的结果。
这是我的文件夹结构:
谁能帮我解决这个问题??