How to clear 403 Error Forbidden on your website
Hello Guys, I want to share with you how to clear 403 Error Forbidden on your website.
First of All What is 403 Error Forbidden?
The 403 Forbidden error is an HTTP status code that means accessing the page or resource you were trying to reach is abso...
damilarewebby.hashnode.dev
Kevin Pliester
Webdev
Sometimes it is also due to authorization via HTTP, especially with regard to the REST API of WordPress. In this case the following snippet in the
.htaccesshelps:<IfModule mod_rewrite.c> RewriteCond %{HTTP:Authorization} ^(.*) RewriteRule ^(.*) - [E=HTTP_AUTHORIZATION:%1] </IfModule>