On EE 1.x I was used to using a rule like this for removing index.php from urls:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !\.(gif|jpe?g|png|hl_admin|images|themes)$ [NC]
RewriteRule ^(.*)$ /index.php?$1 [L]
</IfModule>However, this isn’t working on EE2. It seems that this time I actually *have* to use the template group name and use ?css= for it to bring up the page properly. The thing is, this is going to break when I start using the Structure module since it won’t refer to template groups. How should I do this on EE 2? I’ve been googling but haven’t found anything and I’m up against a deadline…