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
Same post without parameters redirects properly
I am using the following pluging for the redirects:
http://wordpress.org/extend/plugins/redirection/
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.Change it to
and you’ll see it works.
change
".html?action"
to"/?action".
It worked in blogger because pages in blogger ends in “
.html
“