In Java I can write a really basic JSP index.jsp like so:
index.jsp
<% request.getRequestDispatcher(\"/home.action\").forward(request, response); %>
Try this.
function forward($page, $vars = null){ ob_clean(); include($page); exit; }
on included page the $vars variable will work as the java request attributes
$vars