我想创建一个引用(href),通过点击将我的网页从一个视图定向到另一个视图:
我的代码是
我的控制器,test_cont有一个功能
public function display(){
$this->load->view('test_view2');
}
- 在我看来,我尝试过b / m代码:
$this->load->helper('url');
<a href="<?php echo site_url('index.php/Test_cont/display');?>">Display View 2</a>
$this->load->helper('url');
<a href="<?php echo base_url('index.php/Test_cont/display');?>">Display View 2</a>
$this->load->helper('url');
<a href="Test_cont/display">Display View 2</a>
在所有情况下,当我点击我的链接显示视图2 时,我收到错误404.我也尝试过定义base_url
答案 0 :(得分:0)
像这样使用并检查..
echo base_url('Test_cont/display');