The index page (aka homepage.php) in my code igniter install is working fine no matter what.
The problem lies with using subdirectories to store other pages, current
please create .htaccess file in project folder and write:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all other URLs to index.php/URL
RewriteRule ^(.*)$ index.php?url=$1 [PT,L]
ErrorDocument 404 index.php
You don't need to define in base_url in config file:
$config['base_url'] = ''; // blank it.