【问题标题】:WordPress HTTPS (SSL) Permalink Configuration for NginxNginx 的 WordPress HTTPS (SSL) 永久链接配置
【发布时间】:2017-04-06 14:22:16
【问题描述】:

我已经在我的服务器上安装了 Nginx、PHP-FPM、SSL 证书(Let's Encrypt)和 WordPress 4.6.1,并且运行良好。 但是,当我将永久链接设置更改为默认值以外的任何设置时,我在每个帖子、文章和页面上都会收到 404 错误。 在我的 nginx 配置文件中,我的位置/块下有以下代码:

try_files $uri $uri/ /index.php?$args;

这是我的 nginx.conf:

server {
    listen      xxx.xxx.xxx.xxx:80;
    server_name raharja.com www.raharja.com;
    root        /home/admin/web/raharja.com/public_html;
    index       index.php index.html index.htm;
    access_log  /var/log/nginx/domains/raharja.com.log combined;
    access_log  /var/log/nginx/domains/raharja.com.bytes bytes;
    error_log   /var/log/nginx/domains/raharja.com.error.log error;

    location / {

		# WordPress permalinks configuration
		try_files $uri $uri/ /index.php?$args;

        location ~* ^.+\.(jpeg|jpg|png|gif|bmp|ico|svg|css|js)$ {
            expires     max;
        }

        location ~ [^/]\.php(/|$) {
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            if (!-f $document_root$fastcgi_script_name) {
                return  404;
            }

            fastcgi_pass    127.0.0.1:9001;
            fastcgi_index   index.php;
            include         /etc/nginx/fastcgi_params;
        }
    }

    error_page  403 /error/404.html;
    error_page  404 /error/404.html;
    error_page  500 502 503 504 /error/50x.html;

    location /error/ {
        alias   /home/admin/web/raharja.com/document_errors/;
    }

    location ~* "/\.(htaccess|htpasswd)$" {
        deny    all;
        return  404;

    }

    include     /etc/nginx/conf.d/phpmyadmin.inc*;
    include     /etc/nginx/conf.d/phppgadmin.inc*;
    include     /etc/nginx/conf.d/webmail.inc*;

    include     /home/admin/conf/web/nginx.raharja.com.conf*;
try_files $uri $uri/ /index.php?$args;
}
有没有人有办法解决吗?

【问题讨论】:

    标签: php wordpress ssl nginx


    【解决方案1】:

    我建议你试试这个:

     if (!-e $request_filename)
        {
           rewrite ^(.+)$ /index.php?q=$1 last;
        }
    

    【讨论】:

    • 仍然收到 404
    • 哪里有 SSL 选项?
    猜你喜欢
    • 2013-03-26
    • 2015-02-20
    • 2017-07-27
    • 1970-01-01
    • 1970-01-01
    • 2017-10-05
    • 2018-04-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多