View Full Version : Make index page go to forum not CMS page
rex_b
01-12-2010, 12:45 PM
Anyone?
Brandon Sheley
01-12-2010, 12:54 PM
There are a few articles on this at vb.com
have you tried to search for them over there?
TheSupportForum
01-12-2010, 01:12 PM
There are a few articles on this at vb.com
have you tried to search for them over there?
if you have a .htaccess file located in public_html
add the following lines
Options +FollowSymLinks
RewriteEngine On
RewriteOptions Inherit
DirectoryIndex forum.php
ensure you have this somewhere
DirectoryIndex forum.php
the rest should be there if not add the missing ones
Lynne
01-12-2010, 02:58 PM
Real easy. Open up index.php and change it to this:
/**
* Use the CMS as the default script:
*/
// require('content.php');
/**
* Use the forum as the default script:
*/
require('forum.php');
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.