I've been trying to make:
http://site.com/file.php?x=foo
redirect to:
http://newsite.com/something/completely/different/
Using the following:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^file\.php?x=foo$ http://newsite.com/something/completely/different/ [R=301,NC,L]
</IfModule>
But it doesn't do anything (just loads same old page as if I never touched the htaccess).
Is there something I'm missing?
Thanks much for the help!