使用mod_proxy时重写url

时间:2016-04-02 09:39:03

标签: mod-rewrite reverse-proxy mod-proxy

我在:8085上运行了一个nodejs应用,并使用

将其映射到根域
ProxyPass /about-us !
ProxyPass /app1 !
ProxyPass / http://test.example.com:8085/
ProxyPassReverse / http://test.example.com:8085/

#The part below doesn't seem to be working
RewriteEngine On
RewriteCond %{QUERY_STRING} _escaped_fragment_=(.*)$
RewriteRule (.*) http://test.example.com:8888/%1? [P]

我想要发生的是,只要网址包含_escaped_fragment=,请求就应该转到我的phantomjs服务器正在运行的端口:8888。但是网址没有被重写。

0 个答案:

没有答案