2014-04-14 67 views
0

我試圖在HostGator中部署CodeIgniter2項目。應該很容易吧?我在配置改變這一/ config.php文件hostgator中的CodeIgniter不起作用

$config['base_url'] = 'http://example.com'; 
在配置

/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

最後!!!它是關於區分大小寫的,我在窗口中工作,並且所有控制器和模型類的名稱都是大寫的,但是在Linux中,我正在部署的服務器沒有重新對齊小寫字母控制器和模型,所以把所有東西都改成更低,現在一切正常。