On Wed, May 16, 2018 at 9:22 PM, Chaitanya Govande <chint...@gmail.com> wrote:
>
> Following is the code:
>
> <If "%{REQUEST_URI} =~ /manager/status/ ...

The issue may be that '/' is both a regex separator and a path in this
expression.
The other form of regexes to work around this is "m<sep>regex<sep>",
so you possibly could try something like "m#manager/status#" here.

Regards,
Yann.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to