apache配置的等效值是多少

时间:2010-11-25 00:05:59

标签: .htaccess apache2 nginx apache-config

我需要将以下nginx规则转换为Apache配置。 任何人都可以帮助我。

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;
}

1 个答案:

答案 0 :(得分:1)

看看mod_proxy documentation,我认为ProxyPassMatch指令很有意义。