Hello,
I have a page /home.xhtml that I would like to simply bounce to:
/if/#{appstate.folder}/home.xhtml
<!DOCTYPE pages PUBLIC
"-//JBoss/Seam Pages Configuration DTD 1.2//EN"
"http://jboss.com/products/seam/pages-1.2.dtd">
<page>
<navigation>
<redirect view-id="/if/#{appstate.folder}/home.xhtml"/>
</navigation>
</page>Hello,
You can use a simple html file like:
<meta http-equiv="Refresh" content="0; URL=login.seam" />
to redirect your browser...
Keep in mind to use URL=*.seam... ;)