我需要将下面的nginx规则转换为Apacheconfiguration。 谁能帮我。
location /chat { rewrite /chat(/.+)$ $1 break; proxy_pass http://localhost:8000; proxy_set_header Host $host; proxy_set_header Cookie $http_cookie; proxy_buffering off; proxy_send_timeout 310; }
看看mod_proxy文档 ,我认为ProxyPassMatch
指令是有趣的。