For example, I have a page model that targets /quality-standards.cfm
If I enter the url with /Quality-standards.cfm
It will not render anything as it is looking for exactly “/quality-standards.cfm”.
I have tried setting the urlPath to be toLowerCase() but it is not working.
options = {
userAttributes: {
urlPath: window.location.pathname.toLowerCase(), // set url path to lowercase because builder url targeting is case sensitive
}
}
the original URL path seems to keep overriding it. the payload is still /the original URL path seems to keep overriding it.
Quality-standards.cfm
How do I make the url path targeting not case sensitive?