在codeigniter中说出我的网址:
http://myurl.com/username
如果输出为:
1) http://myurl.com/username/about_us
2) http://myurl.com/username/profile
3) http://myurl.com/username/account
我如何在输出中找到username
?
我的研究很少
http://www.codeigniter.com/userguide2/general/routing.html但仍未得到正确的解决方案。
任何人都可以帮忙吗?提前谢谢!
答案 0 :(得分:0)
在config / routes.php
中试试$route[':any'] = "controller/function";
以及关于aboutus和其他
$route[':any/aboutus'] = "controller/aboutus";
控制器中的
$this->uri->segment(1);
获取用户名