douhei8633 2017-10-13 07:41
浏览 61
已采纳

为什么在codeigniter中没有正确生成此链接?

I'm using codeigniter and the link to my categories don't work right. Maybe I don't understand some settings of the framework. I have in my configuration file set this base url:

$config['base_url'] = 'http://hms.loc';

But when I click the "Home" category or any other category the link looks like:

http://localhost/hms/

But it should be:

http://hms.loc

When I click the "Rooms" category it is:

http://localhost/hms/rooms

How do I set this up correctly? And where can I specify such settings?

  • 写回答

3条回答 默认 最新

  • douhuo1738 2017-10-13 07:45
    关注

    You can use base_url() or site_url() method from URL_Helper.

    Please check the documentation:

    https://www.codeigniter.com/user_guide/helpers/url_helper.html

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?