博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
paip.输出内容替换在Apache 过滤器filter的设置
阅读量:6114 次
发布时间:2019-06-21

本文共 788 字,大约阅读时间需要 2 分钟。

paip.输出内容替换在Apache 过滤器filter的设置
作者Attilax  艾龙,  EMAIL:1466519819@qq.com
来源:attilax的专栏
地址:http://blog.csdn.net/attilax
LoadModule ext_filter_module modules/mod_ext_filter.so
    ## mod_ext_filter directive to define a filter which    
    ## replaces text in the response    
    ##    
 #   ExtFilterDefine fixtext1 mode=output intype=text/html cmd="d:/sed.exe 's,lonely-s,attilax,'"  
 
ExtFilterDefine fixtext mode=output intype=text/html cmd="e:/sed.exe s/lonely/attilax/g"  
ExtFilterDefine fixtext1 mode=output intype=text/html cmd="e:/sed.exe s/server/attilax/g"  
        
    <Location />    
    # core directive to cause the fixtext filter to    
    # be run on output    
      SetOutputFilter fixtext;fixtext1    
 ExtFilterOptions LogStderr DebugLevel=6 
    </Location>  
参考
在Apache和Nginx反向代理中实现输出内容替换例子_域名主机_站长资讯_最模板.htm
mod_ext_filter - Apache 2.2 中文版参考手册.htm
你可能感兴趣的文章
Perl处理数据(一):s替换、split和join
查看>>
mysql下sql语句 update 字段=字段+字符串
查看>>
.Net CLR 中的同步机制(三): AutoResetEvent和ManualResetEvent
查看>>
MapServer WinForm开发成功
查看>>
大型JavaScript应用程序架构模式
查看>>
XDomainRequest object
查看>>
<%=字符串%>回刷技巧(小技巧)
查看>>
ExtAspNet官方示例网站和官方论坛速度归来!
查看>>
android.content.res.Resources$NotFoundException: Resource ID解决办法
查看>>
学习网址
查看>>
[原] insert into … on duplicate key update / replace into 多行数据
查看>>
SQL查询:主从表 报表方式显示
查看>>
JS提取子字符串函数比较
查看>>
[置顶] 程序员学数据库那些事儿
查看>>
C#环境下,文本框翻屏,怎么一直显示当前插入的内容!!!!!!!!!!!!!!!!...
查看>>
Openssl pkey命令
查看>>
迭代接口的IEnumerator
查看>>
Chrome/Chromium HTML5 video 视频播放硬件加速
查看>>
HDU 3622 Bomb Game(2-sat)
查看>>
phpexcel 字符串转码
查看>>