Ho to apply mod rewrite to solve the canonical issues for UK website for a specific directory like /directory/ Is it something like that Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^site\.com\.uk/directory [NC] RewriteRule ^(.*) http://www.site.com.uk/directory/ $1 [R=301,L]
or at least for the domain itself without directory Is it something like that Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^site\.com\.uk [NC] RewriteRule ^(.*) http://www.site.com.uk $1 [R=301,L]