从codeigniter中的一个视图重定向到另一个视图

时间:2016-10-07 07:23:06

标签: codeigniter

我想创建一个引用(href),通过点击将我的网页从一个视图定向到另一个视图:

我的代码是

  • 我的控制器,test_cont有一个功能

    public function display(){   
       $this->load->view('test_view2');
    }
    

    - 在我看来,我尝试过b / m代码:

    1. $this->load->helper('url');
      <a href="<?php echo site_url('index.php/Test_cont/display');?>">Display View 2</a>
      
    2. $this->load->helper('url');
      <a href="<?php echo base_url('index.php/Test_cont/display');?>">Display View 2</a>
      
    3. $this->load->helper('url');
      <a href="Test_cont/display">Display View 2</a>
      

在所有情况下,当我点击我的链接显示视图2 时,我收到错误404.我也尝试过定义base_url

1 个答案:

答案 0 :(得分:0)

像这样使用并检查..

 echo base_url('Test_cont/display');