Tom
(@atomiktd)
First check Regex box on the right.
Then in Source URL field put:
^/recepts.asp\?cid=.+
That’s it!
It will search for /recepts.asp?cid= with 1 or more numbers following it.
Of course you have to fill Target URL field out as well 🙂
Thanks, I had lot of page in that format, now I have 1 page with tabs and toggles, so I redirect to one page.
I’m struggling with this as well. I have 500+ bad urls that all have this in common: /37-category-topic/
Example: /37-category-topic/blah-blah-blah?start=50
What is the regex for matching all urls that contain this and then anything after it?
Tom
(@atomiktd)
Try this
^/37-category-topic/.*
You got it, thanks Tom! Wow, 500 url’s just redirected with that short regex.