i am trying to pass a parameter from a jsf page to another but the problem that the another page i am calling to doesn't change even the URl and it just add "#" to the existing url . this is index.xhtml
<h:commandLink value="details" action="#{ideeBean.details()}">
<f:param name="idee" value="in" />
</h:commandLink>
this is IdeeBean.java
public String details(){
return "details";
}
and when i click the commandlink the url pass from :http://localhost:8080/gidee/ to http://localhost:8080/gidee/# .