上传到主机后,codeigniter 无法工作
codeigniter wont work after being uploaded to hosting
我们在我们的主机中重新安装了 codeigniter 3.0.6,每次我们都在更改
$route['default_controller'] = 'welcome';
到
$route['default_controller'] = 'home';
我们收到 404 错误消息。
有人知道如何解决这个问题吗?
CodeIgniter 3.0+ 更改了命名对话。
在您的图像中,您的控制器名称定义为 home.php。检查第一个字母。应该是大写的。
change home.php to Home.php
Inside Home.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Home extends CI_Controller
{
public function __construct()
{
parent::__construct();
}
}
我们在我们的主机中重新安装了 codeigniter 3.0.6,每次我们都在更改
$route['default_controller'] = 'welcome';
到
$route['default_controller'] = 'home';
我们收到 404 错误消息。
有人知道如何解决这个问题吗?
CodeIgniter 3.0+ 更改了命名对话。
在您的图像中,您的控制器名称定义为 home.php。检查第一个字母。应该是大写的。
change home.php to Home.php
Inside Home.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Home extends CI_Controller
{
public function __construct()
{
parent::__construct();
}
}