<% //capturando o endereço digitado e atribuindo a uma variável String URL = request.getHeader("host"); // efetivando comparações e dependendo da URL digitada, direcionar o cliente para outro local. if(URL.equals("www.crbruner.com.br")) { response.sendRedirect("/jsp/index.jsp"); } if (URL.equals("www.brumani.com.br/releases")) { response.sendRedirect("/releases/index.htm"); } if (URL.equals("www.tulipaagropecuaria.com.br")) { response.sendRedirect("/tulipa/index.html"); } if (URL.equals("www.brumani.com.br")) { response.sendRedirect("/brumani/index.jsp"); } if (URL.equals("www.brumani.com")) { response.sendRedirect("/brumani/index.jsp"); } if (URL.equals("www.brumani.com.br/lapidum")) { response.sendRedirect("/lapidum/lapidum.html"); } if (URL.equals("crbruner.tempsite.ws")) { response.sendRedirect("/jsp/index.jsp"); } if (URL.equals("brumani.tempsite.ws")) { response.sendRedirect("/brumani/index.jsp"); } %>