I have uploaded working codeignter application on public ip for testing. Home page is working fine but other pages are not working.
but i can access inner files as below: http://ip-address/index.php/about-us/who-we-are
My files are as below:
**config.php**
$config['base_url'] = '';
$config['index_page'] = '';
$config['uri_protocol'] = 'AUTO';
**routes.php**
$route['about-us/(:any)'] = "page/aboutUs/$1";
$route['contact-us/(:any)'] = "page/contactus/$1";
$route['plan-articles'] = "page/planArticles";
$route['(:any)'] = "page/$1";
$route['default_controller'] = "page";
$route['404_override'] = '';
**.htacess**
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond $1 !^(index\.php|assets|fav\.ico|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?$1 [L]
</IfModule>