wordpress nginx多站點rewrite(重寫)規(guī)則
wordpress nginx多站點rewrite(重寫) 規(guī)則 wordpress 多站點模式可以被應(yīng)用在多種方式上。其中最常用的是在" 子目錄" 模式或者" 二級域名" 模式上。Nginx 提供了
wordpress nginx多站點rewrite(重寫) 規(guī)則 wordpress 多站點模式可以被應(yīng)用在多種方式上。其中最常用的是在" 子目錄" 模式或者" 二級域名" 模式上。
Nginx 提供了兩種特殊的指令:"x-accel-redirect" 和"map", 使用這兩個指令可以使得wordpress 多站點的網(wǎng)絡(luò)服務(wù)實現(xiàn)偽靜態(tài)功能。
wordpress 多站點模式可以被應(yīng)用在多種方式上。其中最常用的是在" 子目錄" 模式或者" 二級域名" 模式上。Nginx 提供了兩種特殊的指令:"x-accel-redirect" 和"map", 使用這兩個指令可以使得wordpress 多站點的網(wǎng)絡(luò)服務(wù)實現(xiàn)偽靜態(tài)功能。
wordpress 多站點使用子目錄重寫規(guī)則
配置中54ux.com 修改為自己的站點域名。
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 54ux.com ;
root /var/www/54ux.com/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/54ux.com/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;
,}
#此處可以繼續(xù)添加偽靜態(tài)規(guī)則
}
wordpress 多站二級域名重寫規(guī)則
配置中54ux 修改為自己的站點域名。本文由 過期域名搶注 搶注域名www.yumichong.cn 域名預(yù)訂 域名搶注 整理
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 54ux.com *.54ux.com ;
root /var/www/54ux.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/54ux.com/htdocs/wp-content/blogs.dir;
access_log off;log_not_found off;expires max;
}
#此處可以繼續(xù)添加偽靜態(tài)規(guī)則
}
備注
"map" 部分可以應(yīng)用于小站點。大站點的多站點應(yīng)用可以使用 nginx-helper wordpress插件 。
如果想進(jìn)一步優(yōu)化wordpress 的性能可以使用Nginx 的fastcgi_cache,當(dāng)使用
fastcgi_cache配置需要在編譯nginx 時加上ngx_cache_purge模塊以及使用wordpress 的緩存插件等等