I am developing a new website by using codeigniter and yesterday I hosted it on a new server. It's working perfectly with home page(landing page URL: http://(domain-name)/(folder-name)). But, if I try to access any other page, it shows:
404 Not Found error "The requested URL /(folder-name)/ Register was not found on this server."
URL: http://(domain-name)/(folder-name)/Register
I am using routes.php so,
Register =
$route['Register'] = 'register/index';
I already changed index.php to
$config['index_page'] = '';
and changed
$config['uri_protocol'] = 'AUTO';
and my .htaccess is
RewriteEngine on
RewriteCond $1 !^(index\.php|public|\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ folder-name/index.php?$1 [L]
Please help me to solve this issue. Thanks and Regards