I just uploaded my demo project in subfolder on godaddy . When I open a website url example.com/demo Home page work fine but when I try to open inner p
Thank you all for the response.Finally i got the solution.I just changed my config file setting in config.php file.
$config['index_page'] = 'index.php?'; // replace with (?) mark
$config['uri_protocol'] = 'QUERY_STRING';
And my .htaccess file are
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
Thanx a lot.Hope it is useful for all.