Usually, to get the request URL in a JSP, I would use
${pageContext.request.requestURL}
but on the project I am working with (because we use tiles I guess) if I run the above I get something like
WEB-INF/pathTo/pageName.jsp
even if the request URL is another and that is just the path of the JSP included using tiles.
How do I get the request URL using JSP EL in this situation?