Redirect a page to another using HTML

Written by Yujin Boby

Edit in WordPress

To redirect a webpage to another using HTML, you can use meta tag with http-equiv=”refresh”.

<html>
<head>      
<meta http-equiv="refresh" content="0; URL='https://NEW-URL-HERE/'" /> 
</head>    
<body>
Visit <a href="https://NEW-URL-HERE/">https://NEW-URL-HERE/</a>
</body>
</html>

Back to redirect