JSP (Java) Redirect


/ Published in: Java
Save to your folder(s)

This redirects visitors to a new URL using a 301 redirect. Using a 301 redirect is the safest way to let search engines like Google, Yahoo!, Live and Ask know your address has changed.


Copy this code and paste it in your HTML
  1. <%
  2. response.setStatus(301);
  3. response.setHeader( "Location", "http://www.domain.com/" );
  4. response.setHeader( "Connection", "close" );
  5. %>

Report this snippet


Comments


You need to login to view comments.