我打算开发中型网站。我想使用 SEO 友好的 url 之类的
http://foobar.com/category/fun/
http://foobar.com/article/lorem-ipsum.html
如您所见,我想使用 slugs 作为控制器名称。我打算通过以下方式实现它。
一个文件来处理所有请求。
在 routes.php 中
$route['(:any)'] = 'my_routes/$1';
然后在带有 $this->uri->segment 的 my_routes 中,我可以确定请求哪个控制器。
对整个网站只使用一个文件 (my_routes) 是个好主意吗?
你能给我推荐一些更好的解决方案吗?