How to mod rewrite this one

Discussion in 'Apache' started by wisam74us, Apr 2, 2007.

  1. #1
    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]
     
    wisam74us, Apr 2, 2007 IP
  2. wisam74us

    wisam74us Well-Known Member

    Messages:
    1,059
    Likes Received:
    47
    Best Answers:
    0
    Trophy Points:
    168
    #2
    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]
     
    wisam74us, Apr 2, 2007 IP