codeigniter上传到托管后不会工作

时间:2016-03-29 16:16:04

标签: php codeigniter hosting cpanel

我们在托管中进行了全新的codeigniter 3.0.6安装,每次我们都在更改

$route['default_controller'] = 'welcome';

$route['default_controller'] = 'home';

我们收到404错误消息。

有谁知道如何解决这个问题?

enter image description here

1 个答案:

答案 0 :(得分:1)

CodeIgniter 3.0+改变了命名对话。

在您的图片中,您的控制器名称定义为 h ome.php 。检查第一封信。它应该是上限。

  

home.php 更改为 Home.php

     

Home.php

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Home extends CI_Controller
{

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

    }
}