我在 cento 的 7 服务器上使用 Apache 2.4 构建了一个反向代理。它适用于标准 html 页面,但我也需要替换一些存储在 .js 文件中的 url。指令:
ProxyHTMLExtended On
应该在外部 .css 和 .js 文件中启用解析,但它不起作用。在日志文件中我可以看到:
[proxy_html:trace1] [pid 3263] mod_proxy_html.c(823): [client xxx] Non-HTML content; not inserting proxy-html filter
我尝试使用 mod_substitute,这是我的 httpd.conf 中有趣的部分:
ProxyPass /mylocation/ http://remoteserver/
<Location /mylocation/>
ProxyHTMLEnable On
ProxyHTMLExtended On
LogLevel debug proxy_html:trace3 substitute_module:debug
RequestHeader unset Accept-Encoding
AddOutputFilterByType SUBSTITUTE text/javascript text/html
Substitute "s|/css/|/mylocation/css/|ni"
Substitute "s|/js/|/mylocation/js/|ni"
Substitute "s|/custom_logo/|/mylocation/custom_logo/|ni"
Substitute "s|/html/|/mylocation/html/|ni"
Substitute "s|/current_config/|/mylocation/current_config/|ni"
Substitute "s|/web_lang/|/mylocation/web_lang/|ni"
Substitute "s|/custom_lang/|/mylocation/custom_lang/|ni"
ProxyPassReverse /
ProxyHTMLURLMap //remoteserver /mylocation/
ProxyHTMLURLMap http://remoteserver /mylocation/
ProxyHTMLURLMap /mylocation /mylocation
ProxyHTMLURLMap ^\/(.*) /mylocation/$1 R
</Location>
但在日志文件中没有任何 mod_substitute 跟踪。似乎 mod_substitute 从未被调用过。
proxyHTMLURLMap 规则工作正常,但仅适用于常规 html 文件。
根据我向服务器询问的 .js 文件,我可以在日志文件中看到:
[xml2enc:debug] [pid 3259] mod_xml2enc.c(254): [client xxx] AH01434: Charset ISO-8859-1 not supported by libxml2; trying apr_xlate
或者
[proxy_html:trace1] [pid 3263] mod_proxy_html.c(823): [client xxx] Non-HTML content; not inserting proxy-html filter
然后进程停止,我收到文件但没有任何内容被替换。
1)为什么“ProxyHTMLExtended On”规则不解析外部 .js 文件,如 Apache 文档中所述?
2) 为什么 mod_substitute 不起作用?