tenho seguinte codigo no meu menu
<body>
<f:view>
<h:form id="menu">
<table>
<tr>
<td class="tdmenu"><h:commandButton action="geral" value="Home"
immediate="true" /></td>
<td class="tdmenu"><h:commandButton action="cadastroProduto"
value="Cadastro de Produtos" immediate="true" /></td>
<td class="tdmenu"><h:commandButton action="cadastraCliente"
value="Cadastra Clientes" immediate="true" /></td>
<td class="tdmenu"><h:commandButton action="alteraCliente"
value="Manutenção de Clientes" immediate="true" /></td>
<td class="tdmenu"><h:commandButton action="consultaCliente"
value="Consulta de Clientes" immediate="true" /></td>
<td class="tdmenu"><h:commandButton action="vendaProduto"
value="Venda de Produtos" immediate="true" /></td>
</tr>
</table>
</h:form>
</f:view>
</body>
quando clico nos botoers ele nao redireciona para a pagina jsp de cadastr ou qualquer outra, o caodigo abaixo esta no faces
<navigation-rule>
<from-view-id>geral</from-view-id>
<navigation-case>
<from-outcome>geral</from-outcome>
<to-view-id>/htdocs/gui/geral.jsp</to-view-id>
<redirect/>
</navigation-case>
</navigation-rule>
<navigation-rule>
<from-view-id>cadastroProduto</from-view-id>
<navigation-case>
<from-outcome>cadastroProduto</from-outcome>
<to-view-id>/htdocs/gui/cadastroProduto.jsp</to-view-id>
<redirect/>
</navigation-case>
</navigation-rule>
<navigation-rule>
<from-view-id>cadastroCliente</from-view-id>
<navigation-case>
<from-outcome>cadastroCliente</from-outcome>
<to-view-id>/htdocs/gui/cadastroCliente.jsp</to-view-id>
<redirect/>
</navigation-case>
</navigation-rule>
nao sei o que pode estar acontecendo...alguem me ajuda!!!