Symon
|
How To Make My Webpage My Home Page / or vice versaIf you want you http:// link to go to your webpage rather than your forum page , then follow this guide and make a home page, this has to be called index.html
http://howtodoit.myfreeforum.org/...component=content&topicid=651
If you are using a www. link and want it go to your forum rather than a webpage then a simple redirect will do the trick..
Make a homepage as described in the guide then enter a code like.
| Code: | <HTML>
<HEAD>
<TITLE>I moved!!!</TITLE>
<META HTTP-EQUIV="refresh" CONTENT="10;URL=http://my.newplace.com/">
</HEAD>
<BODY>
I moved to a new place.
Your browser should automatically take you there in 10 seconds. If it doesn't please go to http://my.newplace.com/
</BODY>
</HTML> |
CONTENT ="10" is how many seconds people will see the redirect message,, you can change to to what you need, it can be set to 1 second or even 0 seconds.
|