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? Link to comment https://forums.phpfreaks.com/topic/36197-mod_rewrite-exception-question/ 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] Link to comment https://forums.phpfreaks.com/topic/36197-mod_rewrite-exception-question/#findComment-172104 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.