Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
537 views
in Technique[技术] by (71.8m points)

apache - Wordpress inside a subfolder behind Nginx reverse proxy

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...