
lukebussey
- Total activity 7
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 3
Activity overview
Latest activity by lukebussey-
lukebussey commented,
If you use c.storage.googleapis.com as your origin host then you don't need to do this and also the 404 page setup on your bucket will work.
-
lukebussey commented,
There's a better way of doing this now: import querystring; /* remove client-side tracking parameters from querystring */ if (req.url ~ "\?") { set req.url = querystring.clean(req.url); s...
-
lukebussey commented,
I use the following in vcl_recv to remove any UTM or gclid parameters: import querystring; /* remove client-side tracking parameters from querystring */ if (req.url ~ "\?") { set req.url = qu...
-
lukebussey created a post,
Removing certain query string parameters only
I had a need to remove the following query string parameters but leaving all other intact. utm_campaign utm_medium utm_source utm_content utm_term mkt_tok Here’s the VCL solution I came up with...