I need to redirect a single link www.abc.com/blog/?p=123
to www.abc.com/newblog/
I have used:
RewriteRule ^blog/(.*)$ http://www.abc.com/newblog/ [R=301,L]
It is redirecting all sorts of links but missing links in the form /?p=1236
.
I need to redirect a single link www.abc.com/blog/?p=123
to www.abc.com/newblog/
I have used:
RewriteRule ^blog/(.*)$ http://www.abc.com/newblog/ [R=301,L]
It is redirecting all sorts of links but missing links in the form /?p=1236
.
You must be logged in to post a comment.
Query arguments are in
%{QUERY_STRING}
, so you have to look there: