最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
nginx下wordpress子目录伪静态设置步骤详解
时间:2022-06-25 18:48:16 编辑:袖梨 来源:一聚教程网
网站访问目录为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;
}
}
相关文章
- 哈利波特魔法觉醒拼图寻宝格兰芬多塔楼线索位置攻略 08-01
- 金铲铲之战中秋挑战活动怎么玩?中秋双人大作战玩法介绍 08-01
- 《魔法少女小圆MagiaExedra》月卡可获取奖励一览 08-01
- 《地下城堡4》军团战通关攻略 08-01
- 《地下城堡4》惊悸荒野小屋解密攻略 08-01
- 币圈三大主流交易所详解 币安 Coinbase 火币对比分析 08-01