I'm trying to create a redirect for anyone that has parameters in a certain url, to the homepage. I currently have this in my routes:
match "/pr?campaign=#{'params[:campaign]'}" => redirect("/")
but it's not recognising it properly, if i put /pr?campaign=test
into the url I get a page not found..