Currently i've a Wordpress installation inside a subfolder /xxx
on my Apache webserver, this is behind an Nginx reverse proxy.
All works ok, except if i go to www.mydomain.com/xxx
server response Too many redirects but if i go to www.mydomain.com/xxx/index.php
then it shows me correct page (all other pages works properly)
I can't figure out where the problem is, these are my configurations:
Nginx
server {
listen 80;
server_name mydomain.com www.mydomain.com;
server_tokens off;
location / {
proxy_pass http://myrealserver;
}
}
.htaccess inside /xxx
folder
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /xxx/
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /xxx/index.php [L]
</IfModule>
thank you
question from:
https://stackoverflow.com/questions/65545611/wordpress-inside-a-subfolder-behind-nginx-reverse-proxy 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…