Hi,
Is it possible to redirect from HTML page to another page on the net? I have one page and I want to redirect it to another page. What will be the code for redirecting the page to another page when use visits the first page.
Thanks
Yes, Its possible to redirect to another page using HTML code. You can use the following code:
<meta http-equiv="refresh" content="0; url=http://www.roseindia.net/">
The tag <meta http-equiv="refresh" />
is used to refresh the browser after specified interval. Following code will refresh the page after 60 seconds:
<head> <meta http-equiv="refresh" content="60"> </head>
This is one of the easiest way to refresh the page or redirect one page to another page.
Hope above code will help you.
View more tutorials at HTML tutorial index page.
Thanks
Hi,
JavaScript can also be used to redirect the page to another page.
Here is the complete code example:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD>Example of HTML page redirect</TITLE> <script language="JavaScript"> window.location.href = "http://www.roseindia.net" </script> </HEAD> <BODY> <P><a href='http://example.com'>Click here to visit another page</a></p> </BODY> </HTML>
Here we are using window.location.href = "http://www.roseindia.net"
for redirecting to another page.
When page loads JavaScript is executed and page is redirected to http://www.roseindia.net
Thanks
Hi,
Another option is to use the HTTP 301 redirect. This solution is based on the Server Side solution of redirect. The Sever instruct the browser that the resource is permanently move to another url.
Client requests for the a resource on server:
GET /mypage.php HTTP/1.1 Host: www.roseindia.net
Server response:
HTTP/1.1 301 Moved Permanently Location: http://www.roseindia.net/anotherresource.html
You can use the following code in your Servlet for this purpose:
response.sendRedirect("/ServletProject/ValidUser");
Here is an example of Send Redirect in Servlet.
Thanks
Ads