From 0a9d274a5068afcede4b7b6e0f01b452c4433ab0 Mon Sep 17 00:00:00 2001 From: Aaron Max Fein Date: Sun, 8 Apr 2018 21:38:06 -0700 Subject: [PATCH] Updated Simple guide to add TLS cert to cpanel (markdown) --- Simple-guide-to-add-TLS-cert-to-cpanel.md | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/Simple-guide-to-add-TLS-cert-to-cpanel.md b/Simple-guide-to-add-TLS-cert-to-cpanel.md index 253324c..5a8842e 100644 --- a/Simple-guide-to-add-TLS-cert-to-cpanel.md +++ b/Simple-guide-to-add-TLS-cert-to-cpanel.md @@ -83,18 +83,6 @@ Go to cPanel File Manager, create a .htaccess file in the root of your public_ht `RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]` -or, for a possibly faster approach try using - -`` - -`RewriteCond %{SERVER_PORT} 80` - -`RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /(.*)\ HTTP/ [NC]` - -`RewriteRule ^(([^/]+/)*)$ https://%{HTTP_HOST}/$1 [R=301,L]` - -`` - ***