pbootcms官方nginx伪静态设置如下图:
以Nginx环境为例,创建一个二级目录abcmuban,一个主目录,那么伪静态规则如下:
#请复制下面伪静态配置到nginx配置文件中:
#规则适合PbootCMS V2.0+版本
location /abcmuban/ { if (!-e $request_filename){ rewrite ^/abcmuban/(.*)$ /abcmuban/index.php?p=$1 last; } } location / { if (!-e $request_filename){ rewrite ^/(.*)$ /index.php?p=$1 last; } }
转载请注明来源网址:https://abcmuban.com/pbootcmsjc/172.html