I tried a modrewrite for my codeigniter site, but when I went into the htaccess file there was already one.
RewriteEngine on
RewriteCond $1 !^(index\.php?|combine\.php?|_images|assets|_styles|_js|favicon\.ico?|dashboard|mail)
RewriteRule ^(.*)$ /index.php/$1 [L]
However, when I try to locally test my site in xxamp, I have to put index.php
which breaks all my style links. Is there something I'm missing? When the site is live it isn't required.
EDIT: This site was developed on MAMP on osx, i'm using xampp on windows, think that could be part of the problem?