Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

For dynamic pages, I have all requests going to product.php page, and sorting through the params. The rules are:

RewriteRule ^products/([^/]+)/([^/]+)/([^/]+)$ product.php?cat_slug=$1&sub_slug=$2&product_slug=$3 [L,QSA]
RewriteRule ^products/([^/]+)/([^/]+)$ product.php?cat_slug=$1&sub_slug=$2 [L,QSA]
RewriteRule ^products/([^/]+)$ product.php?cat_slug=$1 [L,QSA]

I now want a rule to handle ALL other requests to go to page.php?id=$1. Something like:

([^/]+) page.php?id=$1

Unfortunately that doesn't work. Any ideas?

share|improve this question

1 Answer

up vote 2 down vote accepted

You need to specify the begin and end of the string and exclude the substitution paths:

RewriteCond $1 !^(page|product)\.php$
RewriteRule ^([^/]+)$ page.php?id=$1
share|improve this answer
cool, that almost worked for me, except none of my previous product rules work now (as in the code block in my question). They all get directed to the page.php instead of product.php – dtj Mar 19 '11 at 15:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.