site_url() is not work properly in codeigniter framework

为君一笑 提交于 2019-12-02 08:06:03

You should have loaded the url_helper in your controller construct method or in the function that calls your view like this $this->load->helper('url') and then in your view you should echo the site_url()

<a href="<?php echo site_url("news"); ?>" > Back to Main </a></br></br>`

Did u load url helper

Did u specify the site_url in config file... ->Returns your site URL, as specified in your config file. The index.php file (or whatever you have set as your site index_page in your config file) will be added to the URL, as will any URI segments you pass to the function, and the url_suffix as set in your config file.

If not working try with base_url

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!