In Java I can write a really basic JSP index.jsp like so:
index.jsp
<% request.getRequestDispatcher(\"/home.action\").forward(request, response); %>
You can use like:
header ("Location: /path/"); exit;
The exit is need just in case some HTML output was sent before, the header() will not work, so you must sent new header before any output to the browser.