2009/9/15 Jai <jayamu...@gmail.com>:
> 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-unsubscr...@httpd.apache.org
   "   from the digest: users-digest-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to