Proxypass 之前的重写规则

Proxypass 之前的重写规则

我有在端口 10001 上运行的应用程序,我想有一个反向代理来为它提供服务hostname/ds。唯一的问题是有硬链接脚本/scripts/...

这意味着hostname/ds/应带我到localhost:10001/,并且hostname/scripts应首先将请求 url 重写为hostname/ds/scripts/*

我的配置:

<VirtualHost *:80>
RewriteEngine on
RewriteRule /^scripts/(.*)$ /ds/scripts/$1 [L,PT]   

ProxyPass /ds/ http://127.0.0.1:10001/
ProxyPassReverse /ds/ http://127.0.0.1:10001/

</VirtualHost>

它不起作用:hostname/scripts/得到 404。而hostname/ds/scripts/应用程序得到正确的答案。

根据https://stackoverflow.com/questions/9003358/apache-rewrite-then-proxy-pass PT应该可以工作。我做错了什么?

答案1

你的模式有拼写错误,请尝试^/使用/^(后者永远不会匹配)

答案2

您也可以通过简单地添加第二个 ProxyPass 来匹配 /scripts 来实现这一点,如下所示:

<VirtualHost *:80>
    ProxyPass /scripts/ http://127.0.0.1:10001/
    ProxyPassReverse /scripts/ http://127.0.0.1:10001/

    ProxyPass /ds/ http://127.0.0.1:10001/
    ProxyPassReverse /ds/ http://127.0.0.1:10001/
</VirtualHost>

答案3

我知道这个线程已经解决了,但似乎您正在尝试使用 ProxyPass 访问 Synology DiskStation 的 Web 界面。对于遇到相同问题的任何人,对于最新版本 (DSM 5.1-5004 Update 2),我必须使用以下配置和以下 RewriteRules:

<VirtualHost *:80>
    RewriteRule ^/scripts/(.*)$ /ds/scripts/$1 [L,PT]
    RewriteRule ^/webfm/(.*)$ /ds/webfm/$1 [L,PT]
    RewriteRule ^/webapi/(.*)$ /ds/webapi/$1 [L,PT]
    RewriteRule ^/webman/(.*)$ /ds/webman/$1 [L,PT]

    ProxyPreserveHost On
    ProxyRequests Off
    ProxyVia Off
    ProxyPass /ds/ http://192.168.1.10:5001/
    ProxyPassReverse /ds/ http://127.0.0.1:5001/
</VirtualHost>

显然,随着 DS 的更新版本,这一点会有所改变。我发现使用 FireBug 在搜索 DS 请求的文件夹(需要重定向的文件夹)时非常有用。

相关内容