您现在的位置是:首页 > 网站制作 > WordpressWordpress
wordpress nginx多站点rewrite(重写)规则
杰帅2023-06-19【Wordpress】人已围观
简介wordpress多站点模式可以被应用在多种方式上。其中最常用的是在”子目录”模式或者”二级域名”模式上。
Nginx提供了两种特殊的指令:”x-accel-redirect”和”map”,使用这两个指令可以使得wordpress多站点的网络服务实现伪静态功能。
wordpress多站点模式可以被应用在多种方式上。其中最常用的是在”子目录”模式或者”二级域名”模式上。
Nginx提供了两种特殊的指令:”x-accel-redirect”和”map”,使用这两个指令可以使得wordpress多站点的网络服务实现伪静态功能。
wordpress多站点使用子目录重写规则
配置中shouce.ren修改为自己的站点域名。
- map $uri $blogname{
- ~^(?P<blogpath>/[^/]+/)files/(.*) $blogpath ;
- }
- map $blogname $blogid{
- default -999;
- #Ref: http://wordpress.org/extend/plugins/nginx-helper/
- #include /var/www/wordpress/wp-content/plugins/nginx-helper/map.conf ;
- }
- server {
- server_name shouce.ren ;
- root /var/www/shouce.ren/htdocs;
- index index.php;
- #多站点配置
- location ~ ^(/[^/]+/)?files/(.+) {
- try_files /wp-content/blogs.dir/$blogid/files/$2 /wp-includes/ms-files.php?file=$2 ;
- access_log off; log_not_found off; expires max;
- }
- #avoid php readfile()
- location ^~ /blogs.dir {
- internal;
- alias /var/www/shouce.ren/htdocs/wp-content/blogs.dir ;
- access_log off; log_not_found off; expires max;
- }
- if (!-e $request_filename) {
- rewrite /wp-admin$ $scheme://$host$uri/ permanent;
- rewrite ^(/[^/]+)?(/wp-.*) $2 last;
- rewrite ^(/[^/]+)?(/.*\.php) $2 last;
- }
- location / {
- try_files $uri $uri/ /index.php?$args ;
- }
- location ~ \.php$ {
- try_files $uri =404;
- include fastcgi_params;
- fastcgi_pass php;
- }
- #此处可以继续添加伪静态规则
- }
wordpress多站二级域名重写规则
配置中shouce.ren修改为自己的站点域名。
- map $http_host $blogid {
- default -999;
- #Ref: http://wordpress.org/extend/plugins/nginx-helper/
- #include /var/www/wordpress/wp-content/plugins/nginx-helper/map.conf ;
- }
- server {
- server_name shouce.ren *.shouce.ren ;
- root /var/www/shouce.ren/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/shouce.ren/htdocs/wp-content/blogs.dir;
- access_log off; log_not_found off; expires max;
- }
- #此处可以继续添加伪静态规则
- }
备注
- “map”部分可以应用于小站点。大站点的多站点应用可以使用 nginx-helper wordpress插件 。
- 如果想进一步优化wordpress的性能可以使用Nginx的fastcgi_cache,当使用fastcgi_cache配置需要在编译nginx时加上ngx_cache_purge模块以及使用wordpress的缓存插件等等
Tags:wordpress nginx 站点 rewrite 重写
很赞哦! ()
相关文章
随机图文
-
wp_reset_postdata 和 wp_reset_query 的作用与区别
什么时候使用wp_reset_query,什么时候用wp_reset_postdata? -
wordpress 上传的图片不显示的问题 base64,data:image/gif
-
WordPress 页面模板(Page Template)下拉列表不显示的原因及解决方法
WordPress 的自定义页面模板是一个非常强大好用的功能,使用它新建一些静态页面(Page),添加上一些数据调用的函数,再在网页上做一个导航连接到对应的页面就可以实现很多自定义的功 -
wordpress发布文章HTML标签被自动过滤掉该如何处理?
wordpress发布文章时很多html标签都会自动过滤掉,造成了文章中无法添加<style></style><script></script>等标签。那么该如何如何处理呢? 解决方法一: 将wp-includes文件夹下