: 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
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
More posts by @Correia994
Terms of Use Create Support ticket Your support tickets Stock Market News! © vmapp.org2025 All Rights reserved.