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工作流
一辆机器人虎狮高端混合动力车ComfyUI工作流
一个迷人的女人ComfyUI工作流
森林里有一个皮肤像抛光黑曜石的生物
一个白色的咖啡杯,蒸汽从杯子里冒出来
一只乌鸦栖息在一盏神灯上
一位穿着长袍的强大法师ComfyUI工作流
一位老人安详地坐在云层中钓鱼
坐落在白雪覆盖的广阔平原上2只可爱的雪豹
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

用canvas实现画板涂鸦效果
纯html+css做一个3d统计效果
jquery鼠标滑过图片边框特效(jquery.focus-follow插件)
纯css3绘制的小鸟
利用js做一个炫酷音乐背景效果
3d文字360度旋转
利用js+css3做一个小鱼游泳特效
js实现下雪特效










