I have it:
Options -Indexes
RewriteEngine On
RewriteCond %{HTTP_HOST} ^findmyfiver\.com$
RewriteRule (.*) http://www.findmyfiver.com/$1 [L,R]
What successfully forces the user to the version www.on the site; however, I want to redirect the user to a specific domain and page as I type:
findmyfiver.com/tester.php to findmyfiver.co.uk/tester.php
How it's done?
source
share