pbootcms模板安装在二级目录如何设置伪静态?pbootcms模板二级目录伪静态设置方法

有朋友咨询双恒网络pbootcms模板安装在二级目录如何设置伪静态,以下以宝塔为例:

location /fenggeku/ {
if (!-e $request_filename){
rewrite ^/fgree020.cn/(.*)$ /gree020.cn/index.php?p=$1 last;
}
}

location / {
if (!-e $request_filename){
rewrite ^/(.*)$ /index.php?p=$1 last;
}
}
其中的gree020.cn为二级目录名。


加载中~