Jump to content

Account Queued


Recommended Posts

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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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


Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...