Jump to content

Recommended Posts

Posted

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,

Posted

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.

Posted

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 On

RewriteCond %{HTTPS} !=on

RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

 

That will forced it the users automatically using https.

Posted

@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]


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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...