I’m using the .htaccess from documentation:
RewriteEngine On
# Removes index.php from ExpressionEngine URLs
RewriteCond $1 !\.(gif|jpe?g|png)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]but I’d also like to force a slash on the end of all URLs and force them lowercase. Can any mod_rewrite guys give a hand?
Much appreciated.