ivatsa Posted April 27, 2020 Posted April 27, 2020 Hi, My account has been Queued also getting SSL error for my add-on domain. I would like to continue using this account, can you please activate it? Account username: ivatsa Server: Tommy Thanks in advance,
wolstech Posted April 27, 2020 Posted April 27, 2020 That account is not suspended. The main domain on your account is working properly. If there’s a domain not working, what domain is it? Also, as a reminder, we highly recommend not using Wordpress. It’s horribly insecure.
Luigi123 Posted April 27, 2020 Posted April 27, 2020 I think he’s talking about his main domain when the auto ssl isn’t forcing it using https. It’s currently in not secured but the auto ssl is still working but it’s not forcing it to work. @ivatsa: put this code inside the public_html, but in the .htaccess file: RewriteEngine OnRewriteCond %{HTTPS} !=onRewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] That will forced it the users automatically using https.
wolstech Posted April 28, 2020 Posted April 28, 2020 @Luigi: That will break AutoSSL. Forced SSL redirects and AutoSSL are not compatible with each other unless special rules are added for the verification files in the .well-known folder...it needs an exception because these files MUST be accessed over plain HTTP to verify domains. This is what I use: RewriteEngine On RewriteCond %{HTTPS} !=on RewriteCond %{REQUEST_URI} !^/\.well-known/acme-challenge/[0-9a-zA-Z_-]+$ RewriteCond %{REQUEST_URI} !^/\.well-known/pki-validation/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now