Quote:
Originally Posted by Fou-Lu
.htaccess cascades. You can put the rule set into the root and have it apply to all sub directories. IMO its more manageable to work directly off of a single cascading .htaccess than that of a subdirectory.
A simple match of ^/book-clubs/doubleday/(.*)$ /path/to/index.php?section=$1 will work fine.
|
Thanks so much...that's great news! So I can have just one in the root....what would the rule look like if I wanted all subdirectories in /book-clubs/ would it be..
^/book-clubs/(.*)$ index.php?section=$1
So then this would work for say...
http://www.bookclubshop.com/book-clu...section=review
as well as the doubleday subdirectory?