1818IP-服务器技术教程,云服务器评测推荐,服务器系统排错处理,环境搭建,攻击防护等

当前位置:首页 - Windows系统 - 正文

君子好学,自强不息!

PbootCMS伪静态配置方法

2022-04-19 | Windows系统 | 1818ip | 798°c
A+ A-

1.先去网站后台设置下伪静态

1.jpg

2.根据服务器环境来对应选择伪静态规则

如:

apache-->.htaccess

nginx-->nginx.txt

iis-->web.config

伪静态规则文件在网站根目录下-->rewrite文件夹内

2.jpg

3.伪静态规则详情如下(可复制到对应的伪静态规则内即可)

apache伪静态:

<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>

nginx伪静态:

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

IIS伪静态:

<?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>



本文来源:1818IP

本文地址:https://www.1818ip.com/post/814.html

免责声明:本文由用户上传,如有侵权请联系删除!

发表评论

必填

选填

选填

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。