I have revamped a website and I am redirecting old htm pages to new
php pages using Redirect 301 in a .htaccess file.
Example:
Redirect 301 /results.htm http://www.domainname.co.uk/resultsfixtures-sept.php
This works fine but THE PROBLEM is some of the old pages have SPACES in them like this....
club products info.htm
I have tried:
club%20products%20info.htm
But had no effect, returned 'not found' so my next effort was a Rewrite using back slashes like this....
RewriteRule ^club\ products\ info.htm/$
http://www.domainname.co.uk/products.php/ [R=301,L]
But this still returns
NOT FOUND
The requested URL /club products info.htm was not found on this server.
So am I missing something on the Rewrite?
cheers

Andy