MyBB Community Forums

Full Version: how do i...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how do i make it that when someone goes to my homepage, that it redirects to /forum??
Put this in a .htaccess folder in the folder for the homepage:

Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.domain.com/forum/$1 [R=301,L]

Edit the domain appropriately.
yay, thanks matt