Htaccess redirect ?

You can do it with an index file - I used to use a home.php file in the root when I had a page node for the "home" page.
PHP:
<?php
header('Location: http://mysite.com/community/portal', true, 301);

Or you can just do a rewrite:
Code:
RewriteEngine On
RewriteRule ^$ /community/portal [L]
 
Top Bottom