kid_drew Posted January 29, 2007 Share Posted January 29, 2007 I am rewriting all urls of the format www.xxxxxx.com/yyyyyy to /index.php?p=yyyyyy, but I have phpbb installed in the /board directory and I would like www.xxxxxx.com/board to be the one exception to the above rewrite rule. How do I do that? I've tried:RewriteRule ^([A-Za-z0-9]+)$ index.php?p=$1RewriteRule ^board/?$ /boardAnd that doesn't work. I thought the second line would trump the first, but it doesn't appear to. Any help? Quote Link to comment Share on other sites More sharing options...
wildteen88 Posted January 29, 2007 Share Posted January 29, 2007 Just turn of mod_rewrite in the board directory by adding a .htaccess file in board/ with the following[code]rewriteEngine Off[/code] Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.