PDA

View Full Version : html page redirection


serap
04-13-2004, 06:21 PM
Hi,

I would like to know if it possible to redirect to another page from a html page. f. ex from www.<mypage>.html to any other page wothout using php function - then I need to have .php instead of .html which I dont want....

thanks,

Josh_
04-13-2004, 07:57 PM
Put this code between your head tags, change the link and the number to whatever you want :)


<META HTTP-EQUIV="Refresh" Content="1;URL=http://www.myurl.com/pages.htm">

zoobie
04-14-2004, 06:25 PM
<META HTTP-EQUIV="Refresh" Content="1;URL=http://www.myurl.com/pages.htm">

Whereas the 1 in Content="1;URL=http://site.com" is the amount of time before it refreshes and redirects. Content="10; for example, would be 10 seconds. Many just put a 0 in there so it redirects as fast as possible. :D