I would say that if your intent is for /forums to always be the homepage, add a few lines to your .htaccess file.
RewriteEngine On
RewriteRule ^$ /forums/ [L,R=301]should do the trick.
If you are on nGinx:
server {
listen 80;
server_name www.example.com;
location = / {
return 301 /forums/;
}
location / {
# Other configurations for your site
}
}Hope that gets you where you need to be.
R
Packet Tide owns and develops ExpressionEngine. © Packet Tide, All Rights Reserved.