Forum Moderators: phranque
****************
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^([0-9A-Za-z\-]+)$ /index.php?city=$1 [L]
****************
RewriteCond $1 !^index\.php$
RewriteRule ^([0-9a-z.\-]+)$ /index.php?city=$1 [NC,L]
Use [NC] to make the pattern compare case-insensitive, thus shortening the pattern and making the pattern-processing 30% more efficient.
Completely flush your browser cache before testing new code.
Jim