XF 1.3 How to set /forum as main index

xIsabel38

Well-known member
How do I point my main site (MYSITE.com) to my forum (MYSITE.com/forum) so that when a user goes to the main URL they are sent directly to the forum instead?
 
Is there any particular reason why you have installed in /forum rather than the root?

Unless you plan to use the root for something, I would recommend moving the forum to it.
 
The simplest then would be an .htaccess rewrite:
Code:
RewriteEngine On
RewriteRule ^$ /forum [L,R=301]
Whats the difference between the .htaccess and a index.php file?
Code:
<?php
header('Location: http://your-domain.com/community/portal/', true, 301);
 
Top Bottom