Forum Moderators: phranque
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME}!-f
RewriteRule ^stories/story_(.*)\.html$ index2.php?cat=stories&story_id=$1 [L]
RewriteCond %{REQUEST_FILENAME}!-f
RewriteRule ^([^/]+)/place-(.*).html$ index2.php?state=$1&city=$2 [L,NC]
RewriteCond %{REQUEST_FILENAME}!-f
RewriteRule ^([^/]+)$ $1/ [NC]
RewriteCond %{REQUEST_FILENAME}!-d
RewriteRule ^([^/]+)/$ index2.php?state=$1 [L,NC]
All rules but the first one(with story) work perfectly. For several hours I couldn't figure out what's wrong.
Anybody sees mistakes?
Thank you