Mobile app version of vmapp.org
Login or Join
Correia994

: Page not appearing in Google search results after implementing a 301 redirect in Java JSP to make URL friendly I have this url, which is not SEO friendly: http://www.buscocolegio.com/Colegio/detalles-colegio.action?id=50006815

@Correia994

Posted in: #301Redirect #GoogleIndex #Redirects #Seo

I have this url, which is not SEO friendly:
www.buscocolegio.com/Colegio/detalles-colegio.action?id=50006815
but for the proper keywords appeared on second page of google results list

Then I performed a 301 redirect

<%
String id=request.getParameter("id");
if(id.equals("50006815")){
response.setStatus(301);
response.setHeader( "Location", "http://www.buscocolegio.com/Aragon/Zaragoza/colegio-la-salle-franciscanas.jsp");
response.setHeader( "Connection", "close" );
}
%>


to
www.buscocolegio.com/Aragon/Zaragoza/colegio-la-salle-franciscanas.jsp
which it is seo friendly.

I performed the redirect about 1 month ago. The problem now is none of them appear in google results list. I have checked the redirect with a tool and everything seems to be right

I can't figure out what I am doing wrong so any help will be so much appreciated

10% popularity Vote Up Vote Down


Login to follow query

More posts by @Correia994

0 Comments

Sorted by latest first Latest Oldest Best

Back to top | Use Dark Theme