我在: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
。但是网址没有被重写。