web site question

Spiffae

Newbie
Joined
May 22, 2003
Messages
1,211
Reaction score
0
Hi, i've set up a forum, and i want the main page of the site to take you directly to the forum.

for now the page is (For example) www.mysite.com, and i want people coming to mysite.com to be taken to mysite.com/forum/

is there an easy html way to do that?

thanks.
 
when in doubt, w3schools has all the basics of web code/scripting.
For your specific question:
Code:
<html>
<head>
<meta http-equiv="Refresh"
content="5(# of seconds);url="http://www.mysite.com/forum/">
</head>
.....
 
Back
Top