I’m using mod_rewrite to remove index.php from urls - a pretty simple thing that I’ve done loads of times before successfully - but this time it’s giving me really weird results. I have my stylesheets and javascript all in the same template group as the rest of the site, but no javascript or css templates ever load. They are there if I use index.php to access them, but will not load otherwise. Has anyone ever come across this before?
Here’s my rewrite rule if it helps:
RewriteEngine on
RewriteBase /
RewriteCond $1 !^(images|lm_system|themes|favicon\.ico|robots\.txt|index\.php) [NC]
RewriteRule ^(.*)$ /index.php?/$1 [L]