when HTTP_RESPONSE {
HTTP::header insert X-Frame-Options "SAMEORIGIN" }when HTTP_REQUEST {
#过滤weblogic uddiexplorer目录,禁止外网访问 if { [HTTP::uri] starts_with "/uddiexplorer" } { pool pool1 }#过滤weblogic console目录,禁止外网访问管理控制台
elseif { [HTTP::uri] starts_with "/console" } { pool pool2 }#过滤非法请求
elseif { [HTTP::host] != "192.168.1.8" && [HTTP::host] != "xx.xx.xx.xx" } {
pool poo3 } }