Wildcard URL support in website live-chat campaigns
The website live-chat campaigns support wild card URL patterns. While building a URL pattern, consider the following behavior in mind.
In Voxsig, every URL pattern should start with http:// or https://.
Running the campaign on the exact URL
If you add an exact URL like https://Voxsig.com/app, then the URLs with trailing slashes or the URL params or the hash params would not match. Some examples for exact match definitions are as follows.
https://Voxsig.com/appwould matchhttps://Voxsig.com/app/or `https://Voxsig.com/app?test_param=1https://Voxsig.com/app?test_param=test_valuewould not matchhttps://Voxsig.com/apporhttps://Voxsig.com/app#test_hash_param
Running the campaign ignoring the URL parameters
To ignore the URL params or hash params, you can add a trailing slash in the URL. For eg: https://Voxsig.com/app/ would match all the following URLs.
https://Voxsig.com/app/https://Voxsig.com/apphttps://Voxsig.com/app/?test=1https://Voxsig.com/app/#test
Running the campaign in all sub-directories
You can use the * character in the URL if you want to match all the sub-directories. For eg: https://Voxsig.com/* would match to the following URLs
https://Voxsig.com/https://Voxsig.com/apphttps://Voxsig.com/app/subdirectory
Running the campaign in all subdomains
To match the current domain and subdomains, you can use the pattern {*.}? in the URL. For eg: https://{*.}?Voxsig.com/ would match to the following URLs
https://Voxsig.comhttps://app.voxsig.comhttps://www.Voxsig.com