Apache HTTPd 2.2 忽略 LocationMatch 正则表达式
我正在尝试创建一个与 Apache 2.2 中除一个 URL 之外的所有 URL 匹配的反向代理。它在 Apache 2.4 (Centos 7) 上有效,但在 Apache 2.2 (Centos 6.6) 上无效... # Do not modify this <LocationMatch "^/my-website-2"> ProxyPass http://X.X.X.X:PORT/my-website-2 ProxyPassReverse http://X.X.X.X:PORT/my-website-2 ...