Codeigniter没有找到文件url帮助器

时间:2015-03-05 22:08:57

标签: php codeigniter

所以我有这个设置:

<a href="<?php echo base_url();?>artistas/index" class="menu-link effect link">ARTISTAS</a>

但是,当我点击该链接时,它会转到http://localhost/Universal%20Music/Universal/artistas/index,其中显示404,就好像那里没有任何东西但是我已经创建了具有该名称的控制器加载了一些视图它。我在这里错过了什么吗?

修改

我的config.php有:

$config['base_url'] = 'http://localhost/Universal/Universal';

我停止在文件夹的名称中使用空格,现在路径是: C:\用户\奥拉西奥\文件\项目\通用\通用

控制器文件与我需要的类名相同,其中的代码是:

<?php
class Artistas extends CI_Controller {

   function __construct() {
       parent::__construct();
   }


    public function index()
    {
        $this->load->view('header');
        $this->load->view('main-index');
    }
}

0 个答案:

没有答案