需要在CodeIgniter中更改hmvc路由

时间:2018-05-08 13:08:42

标签: codeigniter routes hmvc

我有CodeIgniter HMVC应用程序,我想根据需要更改路由。

现在我有网站/产品/详细信息/网址,我想用网站/网址更改它。

从管理员端设置网址后,它会重定向到我的路线。

这就是我现在所拥有的:

 Array ( [page] => absence ) 

我希望在我的网址$route['Products'] = "Products/detail/d101productdatatest(this is url)"; 中,它会打开与website/url

相同的页面

1 个答案:

答案 0 :(得分:0)

来自指定的资料库:

https://www.codeigniter.com/userguide3/general/routing.html

上述路线:

$route['controller/function'] ='website/Products/detail/d101productdatatest';

但按照你提出的问题:

  • 您无法使用路线操纵网址
  • 您可以使用路线
  • 使用不同的网址映射相同的功能
  • 您必须在点击上一个给定网址后使用.htaccess重定向到特定网址。

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

希望这个答案可以帮助你! 欢呼声