ungovernable
Active member
I created a route filter like this:
It works perfectly and the page loads using an URL like https://www.example.com/bands/
But how can I rewrite an URL like this:
with this URL:
"metallica" would be a wildcard
I tried using {name}, but the page doesn't load
Code:
Find Route: pages/bands/
Replace With: bands/
It works perfectly and the page loads using an URL like https://www.example.com/bands/
But how can I rewrite an URL like this:
Code:
https://www.example.com/bands/metallica/
Code:
https://www.example.com/pages/bands/?band=metallica
I tried using {name}, but the page doesn't load