PBOOTCMS在nginx虚拟主机location配置中添加规则

PBOOTCMS在nginx虚拟主机location配置中添加规则,规则如下:

1、X版本使用如下规则: location / { if (!-e $request_filename){ rewrite ^/(.*)$ /index.php/$1 last;

  }

}

2、X+版本使用如下规则: location / { if (!-e $request_filename){ rewrite ^/(.*)$ /index.php?p=$1 last;

  }

}

服务器自带的Apache设置方法。

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

  }

}

上一篇:CCF-CSP认证考试 202305-3 解压缩 100分题解-样例输出


下一篇:Visual Studio配置libtorch(cuda安装一步到位)