Acting on the Query String
Normalizing the QS
sub vcl_recv
{
urlplus.write();
}sub vcl_recv
{
urlplus.write(sort_query = false);
}We remove parameters from the QS
sub vlc_recv {
urlplus.query_delete("random");
urlplus.write();
}Removing a parameter from the QS using regex:
Last updated
Was this helpful?
