Authorization Header Missing

Home Forums BulletProof Security Pro Authorization Header Missing

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #44390
    Fredel007
    Participant

    Hey there,

    i have a free BPS version running on another website and that solution:
    https://forum.ait-pro.com/forums/topic/authorization-header-is-missing-autorisierungs-header-fehlt/
    fixed the problem “Autorisierungs-Header is Missing”.

    I tried the same on main site with Pro Version with no result, message still comes in WP.
    I have no clue if it is because of theb Pro Version (i dont think so) but can you give me some advise here? Would be super nice 🙂

    Best

    #44391
    Fredel007
    Participant

    Got it, sorry my fault, i have a Apache Server setting defined. Do you have any idea how i can combine those two? 🙂
    Thx a lot

    # Verhindert Apache Fehler AH00124
    #RewriteEngine On
    #RewriteBase /
    #RewriteRule ^index\.php$ - [L]
    #RewriteCond %{REQUEST_FILENAME} !-f
    #RewriteCond %{REQUEST_FILENAME} !-d
    #RewriteRule . /index.php [L]
    #44396
    AITpro Admin
    Keymaster

    You would add this BPS Rewrite Loop start htaccess code in this Custom Code text box > 8. CUSTOM CODE WP REWRITE LOOP START: www/non-www http/https Rewrite code here. The rest of the WP Rewrite code is already included in BPS htaccess code

    # WP REWRITE LOOP START
    RewriteEngine On
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
    RewriteBase /
    RewriteCond %{HTTPS} !=on
    RewriteCond %{SERVER_PORT} ^80
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
    RewriteRule ^index\.php$ - [L]

    or using the generic WP Rewrite loop htaccess code as an example:

    # Verhindert Apache Fehler AH00124
    RewriteEngine On
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    #44538
    Fredel007
    Participant

    works, thx a lot!

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.