14-Oct-2020 07:59
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/*"}
Solved! Go to Solution.
14-Oct-2020 09:20
Hi JoshBarrow,
Can you try this?
expr { [string tolower [mcget {session.server.landinguri}]] contains "/uri/" }
14-Oct-2020 09:20
Hi JoshBarrow,
Can you try this?
expr { [string tolower [mcget {session.server.landinguri}]] contains "/uri/" }
14-Oct-2020 11:23
That actually worked out well.! Thank you very much.