I want to redirect a particular page using a 301 but my htaccess is also redirecting pages that contain the same start.
Example:
I want to redirect:
To:
http://domain.com/index.php?page=some advantage
My current rule is
RewriteRule ^advantage "index.php?page=some advantage" [L,R=301]
This rule also redirects
To the "some advantage" page
How do I fix this?