I'm trying to remove the index.php from the url in a codeigniter project thats hosted inside a subdomain 'test'
I've tried the following .htaccess, but I'm getting an internal server error.
RewriteEngine On RewriteBase /test RewriteRule ^(.*)$ /index.php/$1 [L] can anyone see the problem, thanks