Forum Moderators: phranque
RewriteEngine on#
#
# Handle www.example1.com
#
RewriteCond %{HTTP_HOST} ^(www.)?example1\.com$ [nc]
RewriteRule (.*) http://example3.com/$1 [R=301]
RewriteRule ^$ folder1 [L]
#
#
# Handle www.example2.com
#
RewriteCond %{HTTP_HOST} ^(www.)?example2\.com$ [nc]
RewriteRule (.*) http://example3.com/$1 [R=301]
RewriteRule ^$ folder2 [L]
----------------- Rule with Condition
Rule without Condition
Rule with Condition
Rule without Condition