HTML Question, need to force someone when they enter a website, to be pushed...

Chris G

New member
If you can't use server-side scripting like PHP, you can do this with pure HTML:

<html>
**<head>
****<meta http-equiv="refresh" content="0; url=http://www.newsite.com" />
**</head>
**<body>
****<p>Redirecting...<a href="http://www.newsite.com">Click here to force redirect</a></p>
**</body>
</html>

In theory the page will redirect immediately before the body is loaded, but you always want to have some kind of fallback in case things don't go quite as planned. =)
 
...to another.? My question is, Currently Im trying to edit a website, to automatically forward the visitor to another website.
Its a website we get for free through a company, they allow you to adjust all pictures, and edit all text and html. I was wondering if there was a script or command, or some way to automatically force anyone who visits the website, to immediatly load them to another website.

Anyone good with HTML?
 
Back
Top