user2746186
user2746186

Reputation: 107

htaccess permanent redirect with query string in url

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

Answers (1)

anubhava
anubhava

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

Related Questions