dsm13698679318 2012-07-08 12:40
浏览 33
已采纳

如何使用.htaccess缩短codeigniter中的网址?

I want to know if there is any way to shorten urls in a codeigniter using .htaccess. Like for example I have example.com/user/account/settings, I would like to shorten the url to example.com/settings. In the same way we remove index.php from the address bar, is there a way to remove more items from the same?

  • 写回答

2条回答 默认 最新

  • douwo8358 2012-07-08 12:44
    关注

    It's done by routes.php file in your CodeIgniter application folder. Documentation.

    For your example it would be really easy, just add a line to the file:

    $route['settings'] = 'user/account/settings';
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?