admin 发表于 2022-2-23 17:27:42

pbootcms网站建站程序Nginx环境下的伪静态配置

pbootcms网站建站程序系统Nginx环境下的伪静态配置
1、到后台配置参数中开启伪静态;
2、在nginx虚拟主机location配置中添加规则,规则如下:

location / {
        if (!-e $request_filename){
                rewrite ^/(.*)$ /index.php?p=$1 last;
       }
}清理缓存,大功告成。
页: [1]
查看完整版本: pbootcms网站建站程序Nginx环境下的伪静态配置