反向代理样式丢失

时间:2016-07-05 07:00:38

标签: apache reverse-proxy

https://httpd.apache.org/docs/current/mod/mod_proxy.html

根据此推荐,我在我的apache服务器中实现了反向代理。

ProxyPass "/foo" "http://foo.example.com/bar"
ProxyPassReverse "/foo" "http://foo.example.com/bar"

来自原始服务器的页面正在提取但缺少样式。我已在httpd.conf文件中加载了以下模块。

LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so

任何人都知道我错过了什么?

1 个答案:

答案 0 :(得分:1)

我们还需要为css / js文件目录提供反向代理匹配。

ProxyPass "/foo/static/css or js" "http://foo.example.com/static/css or js directory"
ProxyPassReverse "/foo/static/css or js " "http://foo.example.com/css or js directory"