I want to add a trailing slash to all URL's with varnish (via 301 redirect).
I was surprised I couldn't find anything about online anywhere, however.
This was the closest I got, but is obviously broken because it doesn't account for query strings or or anything with a . in it.
if (req.url !~ "/$") {
return (synth (751, ""));
}
...
sub vcl_synth {
if (resp.status == 750) {
set resp.status = 301;
set resp.http.Location = "http://www.example.com" + req.url;
return(deliver);
}
}
Test cases I want to account for
example.com/xyz?query=string
-> www.example.com/xyz/?query=string
(add www, add /)
example.com/api/latest.json
-> www.example.com/api/latest.json
(add www, dont add /)
Here is a solution for Varnish 3 that you could translate into Varnish 4. I don't have Varnish 4 handy myself:
I have a Varnish test case file that exercises the various URLs you are interested in as well: