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...")
 
Line 3: Line 3:
 
         <meta http-equiv="refresh" content="0; url=http://server/new/destination/" />
 
         <meta http-equiv="refresh" content="0; url=http://server/new/destination/" />
 
</head></nowiki>
 
</head></nowiki>
 +
 +
[[Category: HTML]]
 +
[[Category: Windows]]
 +
[[Category: Liunx]]

Revision as of 10:09, 9 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>