Hi all,
Can anyone tell me what could be wrong with the following .htaccess code?
The first two rewrites work fine, but it doesn't execute the "specials.php?page=" rule.
TIA!
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
RewriteRule ^([A-Za-z0-9_-]+)/?$ index.php?page=$1 [NC]
RewriteRule ^([a-zA-Z0-9_-]+)/?$ specials.php?page=$1 [NC,L]