301 Permanent Redirect in Java

By , 6 October 2010

301 Permanent Redirect in Java

Wow, I just discovered that all the redirects I had written in my Java webapps use 302 temporary redirects. The reason this is concerning is that SEO best practise recommends using 301 permanent redirects to ensure PageRank and page reputation are attributed to the correct (target) page.

The code I was using looks like this:

response.setStatus(response.SC_MOVED_PERMANENTLY);
response.sendRedirect(newURL);

The problem is of course response.sendRedirect() overrides the permanent redirect status. LOL, hooray for shortcut methods.

301 Permanent Redirect in Java

The correct way to do a permanent redirect in Java is like this:

response.setStatus(response.SC_MOVED_PERMANENTLY);
response.setHeader("Location", newURL);

About Roger Keays

301 Permanent Redirect in Java

Roger Keays is an artist, an engineer, and a student of life. He has no fixed address and has left footprints on 40-something different countries around the world. Roger is addicted to surfing. His other interests are music, psychology, languages, the proper use of semicolons, and finding good food.

Leave a Comment

Please visit https://rogerkeays.com/blog/301-permanent-redirect-in-java to add your comments.