Looking for equivalent of Struts html:rewrite in STL

I know how to rewrite URLs with Struts...its the html:rewrite tag.But how do I do this with STL or an other maybe JSF taglib?Thanks!
[160 byte] By [Miikee_a] at [2007-10-2 10:28:08]
# 1

In my case, both produce expected results

<link rel="stylesheet" type="text/css" href="<html:rewrite page='/assets/css/user.css'/>"/>

<link rel="stylesheet" type="text/css" href="<c:url value='/assets/css/admin.css'/>"/>

Hope this help,

OO

orly_oteroa at 2007-7-13 2:09:17 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
What is "c"I have it set up asxmlns:c=" http://java.sun.com/jstl/core"but it does not contain url?TxSean.
Paradigma at 2007-7-13 2:09:17 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3
The "c" would be the JSTL core tag library.Yes it looks to be the one imported.Yes it should contain the tag <c:url>What version of JSTL are you using? It looks like JSTL1.0, which definitely includes the url tag.What server are you using?
evnafetsa at 2007-7-13 2:09:17 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...