skip to Main Content

Error when securing Apache server with SSL (certbot error)

I'm trying to deploy my Flask app when using this tutorial:https://www.digitalocean.com/community/tutorials/how-to-secure-apache-with-let-s-encrypt-on-ubuntu-18-04. However, in Step 4 — Obtaining an SSL Certificate, I'm getting an error: sudo certbot --apache -d myapp.com -d www.myapp.com Error: Failed authorization procedure. www.myapp.space (http-01): urn:ietf:params:acme:error:unauthorized :: The…

VIEW QUESTION

GET Variable lost on RewriteRule – Apache

I have written a redirect to change quiz.php?quiz=1 to /quiz/1 however PHP can no longer pickup the GET Variables, is there anything i'm missing? This is my htaccess file: RewriteEngine On RewriteCond %{SCRIPT_FILENAME} !-d RewriteCond %{SCRIPT_FILENAME} !-f RewriteRule ^quiz/([^/]*)$ /quiz.php?quiz=/$1…

VIEW QUESTION
Back To Top
Search