我有CodeIgniter HMVC应用程序,我想根据需要更改路由。
现在我有网站/产品/详细信息/网址,我想用网站/网址更改它。
从管理员端设置网址后,它会重定向到我的路线。
这就是我现在所拥有的:
Array ( [page] => absence )
我希望在我的网址$route['Products'] = "Products/detail/d101productdatatest(this is url)";
中,它会打开与website/url
答案 0 :(得分:0)
来自指定的资料库:
https://www.codeigniter.com/userguide3/general/routing.html
上述路线:
$route['controller/function'] ='website/Products/detail/d101productdatatest';
但按照你提出的问题:
htaccess示例:
Redirect /index.html /new/
Redirect /index.html /default.html
Redirect /private/ http://www.example.com/private/
Redirect /img/logo.gif http://www.example.com/images/logo.gif
希望这个答案可以帮助你! 欢呼声