Viewing 1 replies (of 1 total)
  • Depending on which you want, www or non-www, add one of these rule sets to your .htacess file:

    
    #Force www:
    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^thecultofcontent.be [NC]
    RewriteRule ^(.*)$ https://www.thecultofcontent.be/$1 [L,R=301,NC]
    
    
    #Force non-www:
    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^www\.thecultofcontent\.be [NC]
    RewriteRule ^(.*)$ https://thecultofcontent.be/$1 [L,R=301]
    

    Then go to your webmaster tools and make sure that this matches.

Viewing 1 replies (of 1 total)
  • The topic ‘Blog with and without www.’ is closed to new replies.