htaccess - Allow Let's Encrypt to Validate and Renew

When receiving the following Let's Encrypt error message:


domain.com: The SSL certificate expires on Sep 01, 20xx at
3:09:54 PM UTC. At the time of this notice, the certificate expired “-2
days, 2 hours, 9 minutes, and 51 seconds” ago.

The SSL certificate for “domain.com” has not been renewed. *You
must take action to secure this site.*

To upgrade to an EV or OV certificate, navigate to the “SSL/TLS Wizard
<https://webserver.ultrawebhosting.com:2083/?goto_app=SSL_TLS_Wizard>
interface.

 

Add a RewriteCond to your .htaccess to allow the script to work:

 RewriteEngine On
 RewriteCond %{REQUEST_URI} !\.well-known/acme-challenge
 RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
 RewriteRule ^(.*)$ https://%1/$1 [R=301,L]


If you understand rewrites and want to incorporate the necessary line it is the following location: 

 RewriteRule ^.well-known/acme-challenge [L]
  • 0 Users Found This Useful

Was this answer helpful?

Related Articles

How can I redirect http to https?

Create an .htaccess file with the following contents and upload it to your public_html directory....

Meta Redirect

Adding this code to your web page will redirect your visitors to any address that you have...

Your connection to this server has been blocked at the firewall

If you receive the message: "Your connection to this server has been blocked at the firewall. If...

Do you have a firewall?

Yes, our servers have firewalls. For security we close off unused ports and update the server...

Reseller: Unable to find an IP address in when creating an account

When creating accounts be sure to select a package in the package field. You can create a package...