I want to rewrite this http address using JSF tag:
<a href="/module1/page/UserNavigation.html" class="dir">Home</a>
Into this:
<h:link value="HOME" class="dir" outcome="/module1/page/UserNavigation.xhtml" />
But when I test the page I get warning message Cannot match navigation case
. That's because the address is pointing outside the module but it's correct.
Can I suppress that warning somehow?