PDA

View Full Version : How can I skip the 'Front Page' and have it go directly to the forums?


DISLEX
03-28-2010, 09:47 PM
I would like to skip: "Home" http://www.westtexasforums.com/theforums/content.php

and have it go directly to "Forum" http://www.westtexasforums.com/theforums/forum.php

fattony69
03-28-2010, 09:55 PM
Edit your .htaccess file.


RewriteEngine On
rewritecond %{http_host} ^westtexasforums.com
rewriteRule ^(.*) http://www.westtexasforums.com/theforums/forum.php/$1 [R=301,L]

Seven Skins
03-28-2010, 10:33 PM
Edit index.php

Find:
require('content.php');

Replace:
//require('content.php');

Find:
//require('forum.php');

Replace:
require('forum.php');