None found
Your search returned no hits.
95% of all problems already have a solution in our knowledgebase
Added: 11.01.2012 23:57:33 Last updated: 23.02.2017 08:26:47
In this case mydomain.net would be A-record and CloudFlare cannot be used for these. CloudFlare requires a CNAME-record. If you have traffic to yourdomain.net we recommend you redirect the traffic to www.mydomain.net by using .htaccess file. By not doing this the traffic to mydomain.net will not use CloudFlare, while the traffic to www.mydomain.net will be using CloudFlare.
To redirect the traffic for www.mydomain.net add the following to .htaccess file:
RewriteEngine On
# Rewrite lagt til for CloudflareInstall - mydomain.net
RewriteCond %{HTTP_HOST} ^mydomain.net$ [NC]
RewriteCond %{SERVER_PORT} ^80$
RewriteRule ^(.*)$ http://www.mydomain.net/$1 [R=301,L]