Technical Forum
Ask questions. Discover Answers.
cancel
Showing results for 
Search instead for 
Did you mean: 

Landing URI Branch Rule

JoshBarrow
Cirrus
Cirrus

Is there a way to force landing URIs in APM to all lowercase or all uppercase? instead of doing something like this:

 

Expression: expr { [mcget {session.server.landinguri}] contains "/uri/" || [mcget {session.server.landinguri}] contains "/uri/*" || [mcget {session.server.landinguri}] contains "/URI/" || [mcget {session.server.landinguri}] contains "/URI/*"}

1 ACCEPTED SOLUTION

Hi JoshBarrow,

Can you try this?

expr { [string tolower [mcget {session.server.landinguri}]] contains "/uri/" }

View solution in original post

2 REPLIES 2

Hi JoshBarrow,

Can you try this?

expr { [string tolower [mcget {session.server.landinguri}]] contains "/uri/" }

That actually worked out well.! Thank you very much.