I'm really struggling with this one. I am migrating an ASP.NET site to PHP and I need to do some redirects of dynamic .aspx pages which are in the format /page.aspx?id=5 and then 301 redirect these to /page/description/
There isnt a pattern to the redirection so I just want to provide a list of old pages mapping to new ones and not use regex etc.
I have tried
application/x-httpd-php .aspx
redirect 301 "/oldpage.aspx?id=12" [
site.com...]
Also tried
RewriteEngine On
RewriteCond [
site.com...]
RewriteRule [
site.com...] [R=301,L]
But neither work....
Any help much appreciated!