Hi iam completly confused by .htaccess so any help is appreciated.
I want to redirect a url but it doesnt seem to work (full code below)...
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.test-url.com
RewriteRule (.*) http://www.test-url.com/$1 [R=301,L]
Redirect 301 /2462-make-an-enquiry.php http://www.test-url.com/make-an-enquiry.php
Redirect 301 /679-view-by-colour.php?t=2&colour_id=46 http://www.test-url.com/679-view-by-colour.php?t=2&colour_id=66
The one that isnt working is
Code:
Redirect 301 /679-view-by-colour.php?t=2&colour_id=46 http://www.test-url.com/679-view-by-colour.php?t=2&colour_id=66
any one know how to make this work, Thanks?