Difference between revisions of "How to instantly redirect from one webpage to another"

From steamWiki
Jump to: navigation, search
(Created page with "If you want to visit http://server and have it automatically, instantly, redirect the user to http://server/new/destination run ''sudo nano /var/www/html/index.html'' and ente...")
(No difference)

Revision as of 19:51, 2 July 2019

If you want to visit http://server and have it automatically, instantly, redirect the user to http://server/new/destination run sudo nano /var/www/html/index.html and enter the following into the file

<head>
        <meta http-equiv="refresh" content="0; url=http://server/new/destination/" />
</head>