Loading
0

PbootCMS程序IIS7/IIS8/10/Apache/Nginx伪静态规则大全

技术小学生微信公众号
腾讯云服务器大促销。
华为服务器
前言:最近突然发现PbootCMS这款CMS程序使用的人比较多,问伪静态的问题也比较多,本教程整理下PbootCMS程序IIS下web.config及apache下.htaccess 以及nginx下的伪静态规则,希望对新手朋友有帮助
1、IIS下Web.config伪静态规则(支持IIS7/IIS8/IIS10)

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                 <rule name="reIndex" stopProcessing="true">
                    <match url="^(.*)$" ignoreCase="true" />
                    <conditions logicalGrouping="MatchAll">
                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                    </conditions>
                    <action type="Rewrite" url="index.php?p={R:1}" appendQueryString="true" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>

2、Apache下.htaccess伪静态规则

<IfModule mod_rewrite.c>
  Options +FollowSymlinks
  RewriteEngine On  
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f  
  RewriteRule ^(.*)$ index.php?p=$1 [QSA,PT,L]
</IfModule>

3、Nginx下伪静态规则

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

 注意:Nginx中如果站点部署在二级目录,请对应修改重写规则, 如:二级目录为test则:rewrite ^/test/(.*)$ /test/index.php?p=$1 last;
希望对大家有帮助。
 
技术小学生微信公众号
华为服务器
腾讯云服务器大促销。

声明:站长码字很辛苦啊,转载时请保留本声明及附带文章链接:https://blog.tag.gg/showinfo-20-36303-0.html
亲爱的:若该文章解决了您的问题,可否收藏+评论+分享呢?
上一篇:访问网站域名跳转到国家反诈网站的处理方法
下一篇:返回列表