If domain.com and www.domain.com has same content, Google will think it as duplicate content. However, you can use .htaccess to avoid duplicate content. Solution is to redirect your visitor to one of the domain, either with www or without www. The trick below is a simple yet effective way to avoid duplicate content on the same domain.
To avoid duplicate content using.htaccess, follow the steps below:-
Advertisements
- Open you .htaccess file located at your public_html folder
- Copy and append the code below to your .htaccess
RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC] RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]
- Save your .htaccess file and try to enter domain.com at your browser and it should be redirect you to www.domain.com automatically now.
Related posts:
CPAN Error: make test had returned bad status, won't install without force
How to use apt to list available packages?
Free Yahoo POP3 Email account - Yahoo Mail SG and HK
How to backup svn server
How to remove Powered By Prestashop footer link
Woocommerce: Coupon for new customer / first order only
How to delete all .svn folder in Linux / Mac?
Prestashop 1.5 - How to enable add to cart button at Home Featured Product?
Share this with your friends:-