In JSF page navigation should i use navigation rules defiend in faces-config.xml like
action="#{bean.actionGoToPage}"
private String actionGoToPage(){
return "from-outcome";
}
or i can use link to the page direct like
href='index.xhtml'
what is the best practices?