我要完成的是从正在代理的站点中删除用户端的特定内容。我检查过以确保加载并运行了正确的模块。我的虚拟主机看起来像这样:
<VirtualHost *:80>
ServerAdmin admin@domain.com
ServerName proxyed-domain.com
ServerAlias www.proxyed-domain.com
ProxyPass / http://www.example.com/
ProxyPassReverse / http://www.example.com/
# filter to remove find a dealer
FilterDeclare MYFILTER
FilterProvider MYFILTER SUBSTITUTE resp=Content-Type $text/
FilterChain +MYFILTER
Substitute "s|<div class=\"wheretobuySearch\">([\s\S]*?)(/div>)|<div class=\"wheretobuySearch\"></div>|i"
不幸的是,它不会删除代理网站上的内容。我错误地使用mod_filter还是有其他错误?