301 Redirect From Dynamic Page To Static
-
I want to 301 redirect all "id" and "type" numbers from my page dynamic.php page (I have thousands of IDs and thousands of Types) all to a single URL.
So for example the following....
www.mysite.com/dynamic.php?id=1&type=5
www.mysite.com/dynamic.php?id=2&type=5
www.mysite.com/dynamic.php?id=3&type=5
www.mysite.com/dynamic.php?id=1&type=6
www.mysite.com/dynamic.php?id=2&type=6
www.mysite.com/dynamic.php?id=3&type=6
...would all be sent to:
How can this be done without doing a redirect for each ID/Type?
-
If you're after redirecting mysite.com/page?id?=xyz to mysite.com/page the you can use RegEx in your .htaccess file to automatically does it for any variation of ID and TYPE.
I'm not particularly technical so that's all I can offer but I'd love to see what other responses you get back.
-
I figured it out!
RedirectMatch 301 /dynamic.php(.*) https://www.mysite.com/page.htm