Forum Moderators: phranque
But i try to add code for my addon domain, and nothings happening:
RewriteCond %{HTTP_HOST} ^(www\.)?addon_domain\.com
RewriteRule .* - [L]
There is my .htaccess code:
RewriteEngine on
Options -IndexesRewriteCond %{HTTP_HOST} ^.*$
RewriteRule ^/?$ http://www.mysite.net/site/ [R=301,L]
RewriteCond %{HTTP_HOST} ^.*$
RewriteRule ^index.htm$ http://www.mysite.net/site/ [R=301,L]
RewriteCond %{HTTP_HOST} ^.*$
RewriteRule ^index.html$ http://www.mysite.net/site/ [R=301,L]
What`s can be a problem in?