Found the answer to my own question.
Code:
RewriteCond %{REQUEST_URI} !(images)
RewriteRule ^forums(.*)$ http://www.domain.com/$1 [L,R=301]
--------------- Added [DATE]1268257272[/DATE] at [TIME]1268257272[/TIME] ---------------
Quote:
Originally Posted by borbole
Try add a RewriteCond with a negative pattern that excludes the images folder.
Something like this for ex:
Code:
RewriteCond %{REQUEST_URI} !^/forums/images/
|
Thank you! I responded to my own post before I saw that you had responded. Thank you for your response.