Forum Moderators: phranque
RewriteRule ^(.*) [yourdomain.co.uk...]
For those who don't know...
^ = start of the string
(.*) = pattern 1 (where . = any char (google regular expression) and * = 1 or more)
and then set your domain and refer to each pattern as $n where n is the pattern no., in this case theres only 1 so n = 1!