Meta
Categories
Category Archives: php
Redirect Web Page
HTTP meta Tag <html> <head> <meta HTTP-EQUIV="REFRESH" content="0; url=http://www.yourdomain.com/index.html"> </head> </html> JSP <html> <head> <title>Redirect Page</title> </head> <body> <% // New location to be redirected String site = new String("http://www.yourdomain.com/index.html"); response.setStatus(response.SC_MOVED_TEMPORARILY); response.setHeader("Location", site); %> </body> </html> PHP <?php header(’location: http://url/f.html’); … Continue reading
Posted in html, php
Leave a comment