Redirecting the user through meta in seconds
Saturday, January 12th, 2008If you have moved your website to some different domain you can redirect your user’s to this domain through meta this is very simple just two line’s of code it requires
Syntax :
just put the below code in your website page below head
<meta http-equiv=”refresh” content=”5;url=http://www.easytutorial.info” />
Change the url with the url you want to redirect the user and change the content(5) which is seconds in which the user will be redirected
<html>
<head>
<meta http-equiv=”refresh” content=”5;url=http://www.easytutorial.info” />
</head>
<body>
This page will be redirected to our new domain easytutorial.info in 5 seconds
</body>
</html>
Thanks
krates