我尝试在HostGator中部署CodeIgniter2项目。它应该很容易吗?我在config / config.php
中更改了这个$config['base_url'] = 'http://example.com';
在config / database.php中的我改变了这个
$db['default']['hostname'] = 'localhost';
$db['default']['username'] = 'the username';
$db['default']['password'] = 'the password';
$db['default']['database'] = 'database name';
index.php中的
define('ENVIRONMENT', 'production');
当我在浏览器中输入http://www.caribeanrenta.com时,我发现错误404未找到codeigniter。
出了什么问题,我错过了什么?
答案 0 :(得分:0)
最后!!!,它完全是区分大小写的,我在窗口工作,所有控制器和模型分支的名称都是大写的,但是在linux中,这是我部署的服务器,不是&#39 ; t重新组合小写控制器和模型,因此将所有内容更改为更低,现在一切正常。
答案 1 :(得分:0)
我遇到了同样的问题,通过将控制器文件的首字母设置为大写来解决了该问题。示例:我有控制器user.php,并将其重命名为User.php,它可以正常工作。