How to Redirect HTTPS or SSL in .htaccess
  • info@comparecheapssl.com
How to Force or Redirect HTTPSSSL in htaccess

11/12/2019 by admin with 0 comments

How to Force or Redirect HTTPS/SSL in htaccess


Redirect All Web Traffic

RewriteEngine On  RewriteCond %{HTTPS} !on  RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$  RewriteCond %{REQUEST_URI} !^/\.well-known/pki-validation/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$  RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

Redirect Only Specified Domain

RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$ RewriteCond %{REQUEST_URI} !^/\.well-known/pki-validation/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ RewriteEngine On  RewriteCond %{HTTP_HOST} ^example\.com [NC] RewriteCond %{SERVER_PORT} 80  RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L]

Redirect Specified Folder

RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$ RewriteCond %{REQUEST_URI} !^/\.well-known/pki-validation/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ RewriteEngine On  RewriteCond %{SERVER_PORT} 80  RewriteCond %{REQUEST_URI} folder RewriteRule ^(.*)$ https://www.example.com/folder/$1 [R=301,L]

Note: Change the folder reference to the actual folder name

Leave Comment