Add the following entry to your .htaccess file
RewriteEngine on
RewriteCond %{HTTP_HOST} ^abcd.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.abcd.com$
RewriteRule ^(.*)$ http://www.abcd.com/forum/$1 [R=301,L]
Using the code
www.abcd.com will be redirected to
www.abcd.com/forum.
You can redirect your domain to any other domains.