我的网站使用 JSF,网址似乎是http://mysitename.com/wompower6/faces/home.xhtml
我正在使用 prettyfaces,所以如果我在 pretty-config.xml 中使用以下内容,我可以将名称更改为http://mysitename.com/wompower6/home
<url-mapping id="home">
<pattern value="/home" />
<view-id value="/faces/home.xhtml" />
</url-mapping>
我的问题是
如何删除应用程序名称 wompower6 ,使 url 变为 mysitename.com/home ?
在我的 web.xml 中,我有
<welcome-file>home.xhtml</welcome-file>
,但这似乎不起作用。当我键入 mysitename.com 时,它没有映射到 home.xhtml。这里有什么线索吗?