Table of Contents
Redirecting to www
Updated Oct 31st, 2017 at 13:03 GMT
To force your page to always load from the www address, add the following domain to your .htaccess file in your public_html:
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^exampledomain.com [NC]
RewriteRule ^(.*)$ http://www.exampledomain.com/$1 [L,R=301]
Note: substitute "exampledomain.com" for your actual domain