0

URLをApacheの別のポートにプロキシする方法はありますか? たとえば、URLを(逆に)プロキシしたい:

http://*.localhost/engine.io/?EIO=2&transport=polling

URL を変更せずにポート 80 からポート 8080 に:

http://*.localhost:8080/engine.io/?EIO=2&transport=polling

ありがとうございました!

4

1 に答える 1

1

*.localhost(ポート 80) 仮想ホストで、以下を追加します。

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteCond %{HTTP_HOST} ^(.*)$
RewriteRule ^/engine\.io/$ http://%1:8080/engine.io/?%{QUERY_STRING} [L,P]
于 2013-10-22T19:14:08.117 に答える