new tomcat
This commit is contained in:
parent
879ecc62c4
commit
c568828cb8
256 changed files with 19009 additions and 235 deletions
18
tomcat/webapps/balancer/WEB-INF/config/rules.xml
Normal file
18
tomcat/webapps/balancer/WEB-INF/config/rules.xml
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<rules>
|
||||
<!-- If the URL contains News (case-sensitive), go to CNN.com -->
|
||||
<rule className="org.apache.webapp.balancer.rules.URLStringMatchRule"
|
||||
targetString="News"
|
||||
redirectUrl="http://www.cnn.com" />
|
||||
|
||||
<!-- If the request contains a parameter named paramName whose value
|
||||
is paramValue, go to Yahoo.com. -->
|
||||
<rule className="org.apache.webapp.balancer.rules.RequestParameterRule"
|
||||
paramName="paramName"
|
||||
paramValue="paramValue"
|
||||
redirectUrl="http://www.yahoo.com" />
|
||||
|
||||
<!-- Redirect all requests to jakarta.apache.org. -->
|
||||
<rule className="org.apache.webapp.balancer.rules.AcceptEverythingRule"
|
||||
redirectUrl="http://jakarta.apache.org" />
|
||||
</rules>
|
Loading…
Add table
Add a link
Reference in a new issue