How to redirect a URL with parameters?

My redirection are working until parameters are added to the end of the source URL. What will be the proper way of implementing a redirect were the target will be a different URL but I want to pass the parameters untouched.

Post with Parameters goes to 404 page

Read More

Same post without parameters redirects properly

I am using the following pluging for the redirects:
http://wordpress.org/extend/plugins/redirection/

Related posts

Leave a Reply

2 comments

  1. Your problem ain’t the parameters…it’s that your parametrized URL points to the wrong target…it has a .html where it should have a slash.

    .../windows-restarts-at-ec2.html?action=backlinks&wid...
    

    Change it to

    ..../windows-restarts-at-ec2/?action=backlinks&wid...
    

    and you’ll see it works.