Hi,

I just ported my site to a new server with PHP5 and MySQL5, and my redirects stop working.
I try to redirect the 'airplane.html' page to 'usa_airport_flight_pack.html'

It sort of works, but with errors. It redirects me to:

http://www.newcomersguideusa.com/usa_airport_flight_pack.html?q=airplane.html

Please note the ?q=airplane.html string appended to the end of the URL, which should NOT be there. How can I get rid of it?

My drupal installation is in the /drupal directory of the site.

This is my .htaccess file:

Options -Indexes
RewriteEngine on
Options +FollowSymLinks
RewriteRule ^$ drupal/index.php [L]
RewriteCond %{DOCUMENT_ROOT}/drupal%{REQUEST_URI} -f
RewriteRule .* drupal/$0 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*wiki.*
RewriteRule .* drupal/index.php?q=$0 [QSA]


redirect 301 /airplane.html http://www.newcomersguideusa.com/usa_airport_flight_pack.html

Thank you for all your help.

Cheers, Val