Wordpress Nginx + Apache 反向代理永久链接

Wordpress Nginx + Apache 反向代理永久链接

请允许我解释一下我的问题。我有一台运行 18.04 的 Ubuntu VPS 服务器,我已经安装了 Nginx 和 Apache 以及 php-fpm,我已经将 Nginx 配置为位于的 wordpress 博客的反向代理https://mydomainname.com/blog这一切都运行正常。但是,我无法让我的永久链接按照我的服务器块的配置运行:



server {
        listen 80;
        return 301 https://%host$request_uri;
}
server {
    listen 443 ssl;
    root /var/www/mydomain.com/;


    server_name mydomain.com www.mydomain.com;


ssl_certificate /etc/letsencrypt/live/mydomain.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/mydomain.com/privkey.pem;


 ssl on;
    ssl_session_cache  builtin:1000  shared:SSL:10m;
    ssl_protocols  TLSv1 TLSv1.1 TLSv1.2;
    ssl_ciphers HIGH:!aNULL:!eNULL:!EXPORT:!CAMELLIA:!DES:!MD5:!PSK:!RC4;
    ssl_prefer_server_ciphers on;

access_log            /var/log/nginx/site.access.log;



    location /blog/ {
        index index.php index.html index.htm;
        try_files $uri $uri/ /blog/index.php?q=$uri&$args =404;



        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;

  # Fix the “It appears that your reverse proxy set up is broken" error.
      proxy_pass          http://127.0.0.1:8080;
      proxy_read_timeout  90;


        proxy_redirect off;

    }

}




我的 Apache Vhost 配置:

<VirtualHost 127.0.0.1:8080>
    ServerName mydoamin.com
    ServerAlias www.mydomain.com
    DocumentRoot /var/www/mydomain.com
<FilesMatch "\.php$">
   SetHandler "proxy:unix:///var/run/php7.2-fpm-mydomain.sock|fcgi://127.0.0.1/"
</FilesMatch>

    <Directory /var/www/mydomain.com>
        Options Indexes FollowSymLinks MultiViews

      Require all granted
        AllowOverride All
    </Directory>

ErrorLog ${APACHE_LOG_DIR}/error.log
      CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>


我的 .htaccess 文件



<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>


任何帮助都将受到赞赏。

答案1

我现在已经解决了这个问题。问题是我忘记为 Apache 启用 Mod-ReWrite。我还将我的 Nginx Conf 更新为:


server {
        listen 80;
        return 301 https://$host$request_uri;
}
server {
    listen 443 ssl;
    root /var/www/mydomain.com/;
    #index index.html index.htm index.php;

    server_name mydomain.com www.mydomain.com;


ssl_certificate /etc/letsencrypt/live/mydomain.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/mydomain.com/privkey.pem;


 ssl on;
    ssl_session_cache  builtin:1000  shared:SSL:10m;
    ssl_protocols  TLSv1 TLSv1.1 TLSv1.2;
    ssl_ciphers HIGH:!aNULL:!eNULL:!EXPORT:!CAMELLIA:!DES:!MD5:!PSK:!RC4;
    ssl_prefer_server_ciphers on;

access_log            /var/log/nginx/mydomain.access.log;


location / {
return 301 https://$host/blog/;
}

    location /blog/ {
        index index.php index.html index.htm;

        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;

  # Fix the “It appears that your reverse proxy set up is broken" error.
      proxy_pass          http://127.0.0.1:8080;
      proxy_read_timeout  90;


        proxy_redirect off;

    }

}



相关内容