2

我目前正在尝试对通过本地文件系统的文件处理程序传递的内容使用 URL 重写。似乎没有这方面的文档和/或功能。我想我可以使用 war 文件正常工作(如本论坛https://developer.jboss.org/message/915980中所回答),但不幸的是这对我的东西不起作用。

我的配置看起来像这样

<server name="default-server">
    <http-listener name="default" socket-binding="http" max-post-size="51200000" max-parameters="10000"/>
    <https-listener name="https" socket-binding="https" max-post-size="51200000" max-parameters="10000" security-realm="UndertowRealm"/>
    <host name="default-host" alias="localhost">
        <location name="/" handler="welcome-content"/>
        <access-log rotate="true"/>
        <filter-ref name="server-header"/>
        <filter-ref name="x-powered-by-header"/>
        <filter-ref name="connection"/>
    </host>
</server>
<servlet-container name="default">
    <jsp-config/>
</servlet-container>
<handlers>
    <file name="welcome-content" path="C:/path/to/private/docroot"/>
</handlers>

我试图重建我的 docroot,它看起来像一个暴露的 .war 文件,所以我可以添加一个WEB-INF/undertow-handler.conf文件,其中包含以下规则:

regex['/Deploy/stuff/laptop/windows/(.*)/update.xml'] -> rewrite['/Deploy/stuff/laptop/windows/new-update.xml']

但是这个文件和/或规则似乎被明显地忽略了。

任何帮助是极大的赞赏。

4

1 回答 1

3

应该是undertow-handlers.conf,带有s.

于 2015-07-30T09:16:53.103 回答