PDA

View Full Version : how to auto divert my page



winningbox
30 Mar 2006, 10:54 AM
Hi,
I would like to auto direct the web reader of my existing website address to another page.
How can I go about doing this?

Thanks
Lily

Wickham
30 Mar 2006, 12:02 PM
A meta-refresh is required in the head of your old page:
<META http-equiv="refresh" content="0; URL=http://new-page.html">

or to an external site:
<META http-equiv="refresh" content="0; URL=http://www.website.com/new-page.html">

The time lag above is zero seconds but can be any number. Note "0 has no " after it.