Meta Refresh URL Redirect Code
Meta Refresh is an HTML tag used to redirect a webpage to a new URL after a specified time. Here is an example of how to use the Meta Refresh tag to redirect a webpage:
<html>
<head>
<meta http-equiv="refresh" content="5;url=https://www.newurl.com">
</head>
<body>
<p>Redirecting to a new URL in 5 seconds...</p>
</body>
</html>
In the above code, the meta
tag with the http-equiv
attribute specifies that the webpage should be refreshed after 5 seconds, and the url
attribute specifies the URL to which the page should be redirected.
You can modify the content
attribute to set the amount of time before the redirect happens. For example, if you want to redirect the page after 10 seconds, you can change the content
attribute to content="10;url=https://www.newurl.com"
.
It is worth noting that using the Meta Refresh tag for redirecting a webpage can negatively impact your website's SEO and user experience, and it is recommended to use server-side redirects like 301 redirects instead.