quick htaccess question

I'm trying to redirect my domain to my xenporta homepage and for some reason can't figure it out. My xenporta location is http://www.snowboardprogression.com/forum/portal/

Here is my current htaccess which redirects to my forums

RewriteRule (.*) http://www.snowboardprogression.com/$1 [R=301,L]
RewriteRule ^$ forum [L]


I tried changing the bottom part to reflect the xenporta location but I must be doing something wrong. :(

You not using the the built in xenPorta route changer for that?
First option Set as Index Controller.
 
I'm trying to redirect my domain to my xenporta homepage and for some reason can't figure it out. My xenporta location is http://www.snowboardprogression.com/forum/portal/

Here is my current htaccess which redirects to my forums

RewriteRule (.*) http://www.snowboardprogression.com/$1 [R=301,L]
RewriteRule ^$ forum [L]


I tried changing the bottom part to reflect the xenporta location but I must be doing something wrong. :(




RewriteEngine on
RewriteCond %{HTTP_HOST} ^snowboardprogression.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.snowboardprogression.com$
RewriteRule ^/?$ "http\:\/\/www\.snowboardprogression\.com\/forum\/index\.php" [R=301,L]
 
Top Bottom