None found
Your search returned no hits.
Tjeneste-oppgradering: Følg linken for nærmere status vedrørende migrering, for generelle spørsmål og svar se vårt hjelpesenter.
95% of all problems already have a solution in our knowledgebase
Added: 26.10.2008 12:47:46 Last updated: 22.02.2017 14:00:10
To make sure everyone visiting your website with the domain yourdomain.net has wwww. in the URL you will need to add the following code in .htaccess file:
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^yourdomain.net
RewriteRule (.*) http://www.yourdomain.net/$1 [R=permanent,L]
The benefit of this is to prevent search engines indexing both with and without wwww and therefore finding duplicate content. Duplicate content can cause lower ranking in search engines on search terms related to your website.
If you would like all URL to be without www you can change the last to lines like this:
RewriteCond %{HTTP_HOST} ^www.yourdomain.net
RewriteRule (.*) http://yourdomain.net/$1 [R=permanent,L]