Forum Moderators: phranque
public_html/dev/.htaccess START RewriteEngine On
RewriteCond %{HTTP_HOST} ^dev.addon1.com$
RewriteRule ^(.*)$ ../addon1/dev/$1 [L]
RewriteCond %{HTTP_HOST} ^dev.addon2.com$
RewriteRule ^(.*)$ ../addon2/dev/$1 [L]
public_html/dev/.htaccess END I think you can see what I'm trying to do here. What's wrong with my code?