Log in

View Full Version : Question about Domain Name pointing to Forum Index...


BruZZi
02-14-2006, 01:42 AM
How can I make my Domain Name to point straight to Forum Index ...

Just like the HiDefForum:
http://www.highdefforum.com/
http://www.highdefforum.com/index.php?


... instead of showing the folders of my public_HTML as you can see here: www.bruzzi.ws

*My Forum is located at the plasma-faq folder


TIA

Hellcat
02-14-2006, 05:02 AM
Save something like this to "index.html" in your public_HTML's root:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="refresh" content="1;URL=plasma-faq/index.php">
</head>

<body>
<a href="plasma-faq/index.php">Loading....</a>
</body>
</html>

Brad
02-14-2006, 05:20 AM
You can also do it with a php file:

<?php
error_reporting(E_ALL & ~E_NOTICE);
header('Location: forum/index.php');
?>

Princeton
02-14-2006, 12:39 PM
if you have cpanel ... create a REDIRECT

I also recommend that you go into INDEX MANAGER and turn off indexing for each folder.

BruZZi
02-15-2006, 06:03 PM
Thanks Guys. :)