近来有个需求,比如xxx.com/a 转到a项目(pool)上去 (简单笔记)
实现方法:
1 写Irule
# Name By_query_string_a
when HTTP_REQUEST {
if { [HTTP::host] eq "xxx.com" } {
if { ([HTTP::uri] starts_with "/a") } {
pool pool_a }
}
}
2 设置Virtual Servers
找到pool_a 对应的Virtual Servers vs_a, 里面2个地方需要设置下
1 General Properties 中HTTP Profile 选择 http
2 Resoures中 IRule 选择对应的rule By_query_string_a
到浏览器中输入xxx.com/a 看是不是成功.
阅读(5321) | 评论(2) | 转发(0) |