I have been developing a small web application with CodeIgniter. After testing it out locally I went to put it on my web server to allow a couple other people test out some features. While navigating to the site I get: -
404 Page Not Found error page
When viewing it in my local machine everything loads up and runs perfectly.
This is what I uploaded to the public_html
directory:
application directory
system directory
assets directory (my assets for the site)
index.php
All of those are in the public_html
directory. Like I said, it does give me CodeIgniters 404 error page, so I do know it is at least seeing CodeIgniter. I also tried changing the $config['base_url']
, in the config.php
, to my URL. Same error when changing that or leaving it blank.
I checked my routes, and all those seem correct. Everything also loads up just fine when navigating to it on my local machine.
I also am not using a .htaccess
file at this time
Any suggestions on what I should try?
Thanks a lot!