quote:
Originally posted by John Anderton
<font face="verdana,tahoma,arial,helvetica" size="2">meta http-equiv="refresh" content="0;URL=http://www.krizon.freefronthost.com/" /</font>
Just use Notepad and place the <meta> code in the <head> section. It doesn't have to be anything fancy...
code:
<html>
<head>
<title>Redirect</title>
<meta http-equiv="refresh" content="0;URL=http://www.krizon.freefronthost.com/" />
</head>
<body>
Redirecting to new URL...
</body>
</html>
quote:
Originally posted by John Anderton
Also can i do something if the user had bookmarked a different page (other than the index page, mentioned in edit above)
Are you allowed to use .htaccess files on this host? If so, place the following line in the file (if it doesn't exist, create it)...
code:
RedirectPermanent / http://www.krizon.freefronthost.com/
That should redirect any request for any page to the new URL.