wordpress如何实现nginx多站点rewrite重写规则,下面web建站小编给大家详细介绍一下具体实现方法!
wordpress实现多站点子目录重写规则
map $uri $blogname{
~^(?P/[^/]+/)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 ipkd ;
root /var/www/ipkd/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/ipkd/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;
}
#此处可以继续添加伪静态规则
}
<h3wordpress实现多站点二级域名重写规则
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 ipkd *.ipkd ;
root /var/www/ipkd/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/ipkd/htdocs/wp-content/blogs.dir;
access_log off; log_not_found off; expires max;
}
#此处可以继续添加伪静态规则
}
Nginx如何快速提高网站响应速度(Nginx Proxy Manager)
上面是“wordpress如何实现nginx多站重写规则”的全面内容,想了解更多关于 wordpress 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_3832.html
workflows工作流
一个可爱的人形小机器人和一只蜗牛在森林
一只躲在一堆秋叶里的小刺猬
未来椅子3D产品ComfyUI工作流
大黄蜂空中决战ComfyUI工作流
一个可爱的口袋妖怪ComfyUI工作流
一只沮丧的卡通小丑鱼ComfyUI工作流
一桌精致的美食,桌上几杯白葡萄酒
严寒的冬天里一只小鸟在森林的树枝上休息
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

Bootstrap可视化拖放布局
barcode条形码/qrcode二维码兼容所有浏览器(含ie6/ie7/ie8)
canvas空间文本射线
用canvas实现画板涂鸦效果
html5如何3D立方体旋转特效
制作一个好玩的倒计时
利用js做一个炫酷音乐背景效果










