I have a regex right now on a WordPress site using Redirection plugin:
Source URL:
^/video/(.+)
Target URL:
/video/$1
And that's working fine. Now, I need to add ?filter=views
to the end of the Target URL, but I can't seem to find a way to do it.
Desired redirection would be:
site.com/video/video-category-name
to site.com/video/video-category-name?filter=views
Adding /video/$1?filter=views
as Target URL adds multiple ?filter=views
when I just need the variable added once.
Any one that can help me out? Thanks!