我的知识记录

请问PbootCMS网站Nginx环境伪静态配置(1)

步骤: 后台配置:到后台配置参数中开启伪静态。 配置Nginx虚拟主机:在Nginx虚拟主机 location 配置中添加规则,规则如下: location / { if (!-e $request_filename){

请问PbootCMS网站nginx伪静态规则

nginx #请复制下面伪静态配置到nginx配置文件中: #规则适合PbootCMS V2.0+版本 location / { if (!-e $request_filename){ rewrite ^/(.*)$ /index.php?p=$1 last; } }

请问PbootCMS网站IIS伪静态规则

web.config <?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="reIn