Can you control browser back button using JSF faces-config navagation? When the back button is pressed on browser would like to use navigation like the following to control what page to display:
<navigation-rule>
<from-view-id>/pageThree.xhtml</from-view-id>
<navigation-case>
<from-outcome>back</from-outcome>
<to-view-id>/pageOne.xhtml</to-view-id>
</navigation-case>
</navigation-rule>