我在http://ocpsoft.org/prettyfaces/上使用了这个简单的教程,在 pretty-config.xml 中有一个简单的映射,但是当我点击索引映射时,我得到了 404。下面是 pretty-config.xml
<pretty-config xmlns="http://ocpsoft.org/schema/rewrite-config-prettyfaces"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://ocpsoft.org/schema/rewrite-config-prettyfaces
http://ocpsoft.org/xml/ns/prettyfaces/rewrite-config-prettyfaces.xsd">
<rewrite match="^/(.*)/$" substitute="/$1" redirect="301" />
<url-mapping id="index">
<pattern value="/index" />
<view-id value="/index.xhtml" />
</url-mapping>
</pretty-config>
我正在使用 JSF 2.1、Primefaces 3.5 和 Prettyfaces 2.0.5
提前致谢!