technom8t
02-03-2008, 12:13 PM
Just installed my very first vbulletin on my own, and everything seems fine ecept when i put in my mane url it gives ma an index page but when i put the url in with/forum added it takes me to the correct place/ how do i solve this i have tried changing the stting in vbulletin CP for my forumhome name but makes no diffrence see below for what i mean
www.digitalhacks.co.uk - gives me index page not forum
www.digitalhacks.co.uk/forum - gives me the forum
Peggy
02-03-2008, 01:48 PM
Go to your cPanel, or whatever control panel your host uses, and do a 301 redirect.
You want to direct www.digitalhacks.co.uk (http://www.digitalhacks.co.uk) to www.digitalhacks.co.uk/forum (http://www.digitalhacks.co.uk/forum).
protoss
02-03-2008, 02:27 PM
If the above fails then either of these options will work. No need to use both.
You need to create a new or edit the existing .htaccess file in the root directory
.htaccess in domain root
RewriteEngine on
RewriteRule ^$ http://www.digitalhacks.co.uk/forum/ [L,R=301]
alternatively you could create an index.php file redirect to the forum.
create the index.php with the code below and upload it to the root directory.
<?php
header('Location: http://www.digitalhacks.co.uk/forum/');
?>
technom8t
02-03-2008, 03:38 PM
choose the new index.php way, worked a treat thanks for both your reply's :-)