In Java I can write a really basic JSP index.jsp like so:
index.jsp
<% request.getRequestDispatcher(\"/home.action\").forward(request, response); %>
If you use an MVC like the Zend Framework provides you can change the controller action or even jump between controller actions. The method is _forward as described here.