Apache rewrite rule with original URL containing parameters

So let’s say you want to redirect http://example.org?id=2392 to http://example.org?id=256

You need to use the %{QUERY_STRING} option under RewriteCond like this:

RewriteCond %{QUERY_STRING} id=2392
RewriteRule ^/index.php http://example.org/index.php?id=256 [L,R=permanent]



Thanks for reading this post!


Did you find an issue in this article?

- click on the following Github link
- log into Github with your account
- click on the line number containing the error
- click on the "..." button
- choose "Reference in new issue"
- add a title and your comment
- click "Submit new issue"

Your feedback is much appreciated! πŸ€œπŸΌπŸ€›πŸΌ

You can also drop me a line below!