pbootcms根目录子目录同时放网址如何伪静态设置 nginx为例
时间 :
2021-12-01
编辑 :超级管理员
一个在根目录一个在en 目录
#请复制下面伪静态配置到nginx配置文件中:
#规则适合PbootCMS V2.0+版本
location /en/ {
if (!-e $request_filename){
rewrite ^/en/(.*)$ /en/index.php?p=$1 last;
}
}
location / {
if (!-e $request_filename){
rewrite ^/(.*)$ /index.php?p=$1 last;
}
}