I want to do permanent redirect using htaccess. For eg :- I want to redirect /modules/pages/?pageid=7 to http://www.xxx.com/aaa/.

This is what i have done Redirect permanent /modules/pages/?pageid=7 http://www.xxx.com/aaa/ but it gives me 404 error.

link|improve this question
httpd.apache.org/docs/current/mod/mod_rewrite.html – Ruslanas Balčiūnas Jan 7 at 15:00
feedback

migrated from stackoverflow.com Jan 8 at 17:15

This question came from our site for professional and enthusiast programmers.

1 Answer

up vote 0 down vote accepted

Try in you .htaccess, placing this above your wordpress rules (just under RewriteEngine On:

RewriteCond %{QUERY_STRING} ^pageid=7$
RewriteRule ^modules/pages/$ http://www.xxx.com/aaa/ [R=301,L]

Mod_alias's Redirect won't match against query strings.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.