nginx下wordpress子目录伪静态_nginx下wordpress子目录伪静态设置步骤详解

更新时间:2019-11-05    来源:WordPress    手机版     字体:

【www.bbyears.com--WordPress】

网站访问目录为http://show.abc.com/ ,但是wordpress是装在他下面的manage目录中的,所以访问到的首页也该是http://show.abc.com/manage/
wordpress默认访问文章的URL是http://show.abc.com/manage/?p=12 的形式,需要做伪静态使文章访问形式为http://show.abc.com/manage/12
nginx中配置如下:

server {
listen  80;
server_name     show.abc.com;
access_log      logs/access_show.abc.com.log;
error_log       logs/error_show.abc.com.log;
 
index   index.html index.php;
 
location / {
        root    /web/html/show;
}
 
location /manage/ {
        try_files $uri $uri/ /manage/index.php;
}
 
location /manage/wp-content {
        alias   /web/html/show/manage/wp-content;
}
location /manage/wp-includes {
        alias   /web/html/show/manage/wp-includes;
}
location /manage/wp-admin {
        alias   /web/html/show/manage/wp-admin;
}
 
location ~ \.php$ {
        root           /web/html/show;
        fastcgi_pass   127.0.0.1:9001;
        fastcgi_param  SCRIPT_FILENAME  /web/html/show$fastcgi_script_name;
        include        fastcgi_params;
}
        }

本文来源:http://www.bbyears.com/wangyezhizuo/77526.html