2009/9/15 Jai <jayamurug@xxxxxxxxx>: > We have folloeing rewrite rules in our apache configuration files. > > RewriteRule ^/AuthenticateService/Agent/Authenticate > /AgentAuthenticationService/AgentAuthenticationSoapBindingImplBean [PT] > RewriteRule ^/AuthenticateService/Agent/Authorize > /AgentAuthenticationService/AgencyAuthorizationSoapBindingImplBean [PT] > RewriteRule ^/AuthenticateService/Agent/AuthenticateAndAuthorize > /AgentAuthenticationService/AgentAuthenticationAndAuthorizationSoapBindingImplBean > [PT] Problem: The pattern of the first rule matches requests which are intended for the third rule. Solution: Reverse the order (special patterns followed by more general patterns) or change the regular expression to "not to match anything followed by ....Authenticate", i.e., by marking "end of string" with a $ sign: RewriteRule ^/AuthenticateService/Agent/Authenticate$ /.... Bob --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx