I am trying to redirect a path e.g. www.something.com/apple/pie
to www.something.com/tickets/pie-details
This is what I have tried but doesn't work:
if (req.url ~ "^/apple/.*") {
set req.url = "^/tickets/.*-details";
error 701 req.url;
}
Am I missing something?