Reputation: 107
how to redirect this page: example.com/index.php?option=1&view=news to this /news
I'm tying simple
Redirect /index.php?option=1&view=news /news
but it's not working
Upvotes: 1
Views: 46
Reputation: 785561
You need to use mod_rewrite
to match query string:
RewriteEngine On
RewriteCond %{THE_REQUEST} /index\.php\?option=1&view=news [NC]
RewriteRule ^ /news? [R=301,L]
Upvotes: 1