【发布时间】:2016-12-09 02:16:46
【问题描述】:
当我点击我的徽标时,我想加载我的主页(base_url)。
基本网址 - (http://localhost:8888/adminpanel/)
当我在 <a href="<?php echo base_url(); ?>" 之类的锚标签中使用 base_url() 函数时,它会将我带到(http://localhost:8888/adminpanel/index.html)。
实际上,我在 adminpanel 文件夹中的任何地方都找不到这个 index.html。
所以请朋友们帮我找到解决方案。提前致谢。 :)
【问题讨论】:
-
你添加了$this->load->helper('url');在控制器中?
-
你修改了你的 .htaccess 文件了吗??
-
我会在 autoload.php codeigniter.com/user_guide/helpers/url_helper.html987654321@ 中自动加载 url 助手
-
也可以在这里查看
$config['index_page'] = 'index.php';并查看 config.php 上的设置 -
@TejasMehta 是的,我已经添加了。
标签: php codeigniter base-url