Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
URLをApacheの別のポートにプロキシする方法はありますか? たとえば、URLを(逆に)プロキシしたい:
http://*.localhost/engine.io/?EIO=2&transport=polling
URL を変更せずにポート 80 からポート 8080 に:
http://*.localhost:8080/engine.io/?EIO=2&transport=polling
ありがとうございました!
*.localhost(ポート 80) 仮想ホストで、以下を追加します。
*.localhost
RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteCond %{HTTP_HOST} ^(.*)$ RewriteRule ^/engine\.io/$ http://%1:8080/engine.io/?%{QUERY_STRING} [L,P]