I have the following rules, the one "our-stores" redirects to a different place than the other "PLAIN PAGES" rules:
Options +FollowSymlinks
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RedirectMatch 302 /construction.html http://www.{website}.com/construction-services
RedirectMatch 302 /construction/endless-pools.html http://www.{website}.com/construction-services/endless-pools
# PRODUCT AND SERVICES
RewriteCond %{REQUEST_URI} !\.html$
RewriteRule ^(.*)/(.*)$ /rewrite.php?sub=$1&second=$2 [NC]
# PLAIN PAGES
#RewriteRule ^/$ /index.php [L,NC]
RewriteRule ^signup-free$ /signup-free.php [L,NC]
RewriteRule ^about$ /content.php?page=1 [L,NC]
RewriteRule ^links$ /content.php?page=2 [L,NC]
RewriteRule ^portfolio$ /portfolio.php [L,NC]
RewriteRule ^our-stores$ /our-stores.php [L,NC]
RewriteRule ^contact$ /contact.php [L,NC]
RewriteRule ^products-list$ /lists.php?action=products [L,NC]
RewriteRule ^services-list$ /lists.php?action=services [L,NC]
When I type /our-stores apache redirects to: /our-stores/?sub=our-stores&second=
I don't get it because the rest (signup-free, about, links, portfolio... and so on) are working fine.
Can anybody help me with this one?
Thank you.
EDITED: I hate htaccess, always give me headaches.

RewriteCondup at the top beneathRewriteBaseare not doing anything . They should probably be before theREQUEST_URIcondition... – Michael Berkowski Jan 17 at 13:43our-stores/with a trailing slash, and that was matched by the generic rule. – Michael Berkowski Jan 17 at 13:44our-stores/with the trailing slash into htaccess.madewithlove.be after copying in your whole htaccess, it does match the generic rule. Without the/, it matches correctly and goes to` our-stores.php` – Michael Berkowski Jan 17 at 13:49