CodeIgniter app shows 404 when moved to production

2019-06-28 04:54发布

I've finished developing an app using CodeIgniter in my local machine, and moved it to the production server (live site) yesterday.

My problem is that when I load the site, it immediately shows me a "page not found" error (404). I'm 100% sure this has nothing to do with the server itself, since a clean CodeIgniter installation works perfectly fine.

I've changed the settings in config.php and database.php to reflect the new environment so it's supposed to work. The log file isn't showing anything helpful (only that it can't find index_php after loading the URI library).

Any idea how I can troubleshoot this?

Your help is so much appreciated.

4条回答
戒情不戒烟
2楼-- · 2019-06-28 05:03

Double-check your Apache configuration. For example, if you're using mod_rewrite to get rid of index.php from the URLs on your local machine, then make sure Apache is configured to do the same in production.

查看更多
不美不萌又怎样
3楼-- · 2019-06-28 05:04

Check what RewriteBase points to in .htaccess in the root directory. Were you perhaps developing in a subdirectory on your local machine, ie http://localhost/devsite? If the live site is not in a subdirectory (ie www.yoursite.ext/site then RewriteBase needs to be /.

查看更多
Juvenile、少年°
4楼-- · 2019-06-28 05:08

Permissions issue? If it can't see the file at all (404), then Apache might not have access.

查看更多
够拽才男人
5楼-- · 2019-06-28 05:20

Just found the issue. My default controller's file name started with a capital letter. I changed it to small (e.g.: 'example.php' instead of 'Example.php') and it worked.

I've wasted so much time on such a silly error. :(

查看更多
登录 后发表回答