我在http://ocpsoft.org/prettyfaces/上使用这个简单的教程,在pretty-config.xml中使用了一个简单的映射,但是当我点击 index 映射时,我得到了404.在漂亮的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
提前致谢!