Nginx 对于单个或多个WordPress 程序配置详解(WP官方)

2020-10-22 0 2,346 百度已收录

WordPress的多站点的子域规则WordPress多站点子域规则

1个
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18岁
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
map $http_host $blogid {
    default       -999;
    #Ref: https://wordpress.org/extend/plugins/nginx-helper/
    #include /var/www/wordpress/wp-content/plugins/nginx-helper/map.conf ;
}
server {
    server_name example.com *.example.com ;
    root /var/www/example.com/htdocs;
    index index.php;
    location / {
        try_files $uri $uri/ /index.php?$args ;
    }
    location ~ \.php$ {
        try_files $uri =404;
        include fastcgi_params;
        fastcgi_pass php;
    }
    #WPMU Files
        location ~ ^/files/(.*)$ {
                try_files /wp-content/blogs.dir/$blogid/$uri /wp-includes/ms-files.php?file=$1 ;
                access_log off; log_not_found off;      expires max;
        }
    #WPMU x-sendfile to avoid php readfile()
    location ^~ /blogs.dir {
        internal;
        alias /var/www/example.com/htdocs/wp-content/blogs.dir;
        access_log off;     log_not_found off;      expires max;
    }
    #add some rules for static content expiry-headers here
}

参考:https : //www.nginx.com/resources/wiki/start/topics/recipes/wordpress/

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

栗子博客 网站 Nginx 对于单个或多个WordPress 程序配置详解(WP官方) https://www.lizi.tw/web/18310.html

建筑工地上施工员,闲暇时弄个博客打发时间,

常见问题
  • 1、杰齐1.7仅适用于PHP5.2 2、需Zend支持 3、尽量使用宝塔面板 4、尽量使用Windows 系统,关关对Linux支持不太友好。
查看详情

相关文章

评论
暂无评论
官方客服团队

为您解决烦忧 - 24小时在线 专业服务

Nginx 对于单个或多个WordPress 程序配置详解(WP官方)-海报

分享本文封面