index.jsp 389 Bytes
<%-- 
    Document   : index
    Created on : Oct 3, 2014, 5:45:15 PM
    Author     : Mootangz <Benjawan Singsita>
--%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@page contentType="text/html" pageEncoding="UTF-8"%>

<%
    String url = new String("./home/index");
    response.setStatus(response.SC_MOVED_TEMPORARILY);
    response.setHeader("Location", url);
%>