URL使用下载文件处理程序重写

时间:2015-03-25 13:41:39

标签: url-rewriting wildfly-8 undertow

我目前正在尝试对通过本地文件系统的文件处理程序提供的内容使用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']

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

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:2)

应为undertow-handlers.confs