Forum Moderators: phranque
# Specific URLs
RedirectMatch permanent ^/test/$ http://www.yahoo.com/
RedirectMatch permanent ^/test/dirtest/ http://www.yahoo.com/
RedirectMatch permanent ^/test/dirtest/file.htm$ http://www.yahoo.com/
# Everything Else Temp
RewriteEngine on
RewriteCond %{HTTP_HOST} forumpoint\.com$ [NC]
RewriteRule ^(.*)$ http://www.bing.com/ [R=302,L]
RewriteRule ^test/(dirtest/(file\.html)?)?$ http://www.yahoo.com/ [R=301,L]