The Authorisation header in Wordpress

How to solve a message like warning:
The Authorisation header comes from the third-party applications you approve. Without it, those apps cannot connect to your site.

Not gonna pretend to be a WP expert, but a simple google of the above phrase points me here: https://digwp.com/2021/01/fix-site-health-error-authorization-header-missing/

1 Like
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
#RewriteCond %{SERVER_PORT} 80
#RewriteRule ^(.*)$ https://www.example.com/$1 [R=permanent,L]

#RewriteCond %{SERVER_PORT} ^443$
#RewriteCond %{HTTP_HOST} ^www\\.example\.com$ [NC]
#RewriteRule .? https://example.com%{REQUEST_URI} [R=301,L]
</IfModule>

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.