skip to Main Content

Nginx proxy WordPress http auth

I tried to create a password on https://www.example.de/wp-admin.php & /wp-login.php, but it does not work and skip the auth part. My config: server { set $forward_scheme https; listen 443 ssl http2; listen [::]:443 ssl http2; server_name www.example.de; # Exploit prevention…

VIEW QUESTION

Apache .htaccess How to convert to nginx htaccess?

apache .htaccess <IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{HTTP:Authorization} ^(.+)$ RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L] </IfModule> Please help me. This problem has bothered me for 3 days. Thank you…

VIEW QUESTION
Back To Top
Search