GOAL: Reroute a webpage to another webpage. To do this, just add the meta tag below inside of the head tags of your webpage.
SOLUTION:
<html>
<head>
<meta http-equiv="Refresh" content="0; url=http://www.google.com"/>
</head>
</html>
Replace www.google.com with the webpage you want to reroute to.
If you're using Apache, save the text above into a file called index.html. The web server will then reroute users to another website completely.
SOLUTION:
<html>
<head>
<meta http-equiv="Refresh" content="0; url=http://www.google.com"/>
</head>
</html>
Replace www.google.com with the webpage you want to reroute to.
If you're using Apache, save the text above into a file called index.html. The web server will then reroute users to another website completely.