我已经检查了 codeigniter 用户指南,但我没有幸运地解决我的问题。
我在本地主机上创建了一个网页。
我去的http://localhost/webpage/
时候就没事了。它将转到默认控制器。
我的默认控制器是Homepage
并且有名为的方法index
,guarantee
并且about
当我转到我的 routes.php 时,我添加了这个:
$route['guarantee'] = "homepage/guarantee";
$route['about_us'] = "homepage/about";
然后尝试访问它http://localhost/webpage/guarantee
并http://localhost/webpage/about_us
显示 ERROR 404
但是当我这样做时,$route['default_controller'] = "homepage/guarantee";
将显示保证页面。
谁能帮我解决这个问题?谢谢。