NONE SSL
To force www in your URLs, place the following in the .htaccess.
RewriteCond %{HTTP_HOST} !^www\.
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
To force non-www addresses, please use the following
RewriteCond %{HTTP_HOST} ^www\.
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]
SSL
To force www in your URLs, place the following in the .htaccess.
RewriteCond %{HTTP_HOST} !^www\.
RewriteCond %{HTTPS} =on
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]
To force non-www addresses, please use the following
RewriteCond %{HTTP_HOST} ^www\.
RewriteCond %{HTTPS} =on
RewriteRule ^(.*)$ https://example.com/$1 [R=301,L]
- 2 Users Found This Useful
Related Articles
How to create a .htaccess file
Creating a .htaccess is easier then it sounds. You can create an .htaccess file in any text...
http Error codes
The following are http status and error codes that are returned for each file access via a web...
Frontpage Publishing via FTP
Frontpage extensions are not supported on our servers due to bugs in the extensions (some...
How to upload / create your site.
Creating your site How you create your site depends on what you want to do with it. You...
Changing php.ini directives via .htaccess
A script you want to use requires a different setting then we have set? No problem, you...