日韩亚洲欧美色欲在线_精品无码aⅴ人妻受辱系列_大陆国语一级毛片_亚洲国产日韩不卡综合

PbootCMS偽靜態(tài)配置-IIS7+環(huán)境-Apache環(huán)境-Nginx環(huán)境

日期:2020年09月03日 /人氣: /來源:本站原創(chuàng)

PbootCMS程序在IIS7+環(huán)境-Apache環(huán)境-Nginx環(huán)境中偽靜態(tài)配置方法。

一、IIS7+環(huán)境

#1.X版本使用如下規(guī)則:
<?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/{R:1}" appendQueryString="true" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>

#2.X+版本使用如下規(guī)則:
<?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>

二、Apache環(huán)境

#1.X版本使用如下規(guī)則:
<IfModule mod_rewrite.c>
  Options +FollowSymlinks
  RewriteEngine On
 
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
 
  #如果頁面出現(xiàn)"No input file specified." 請注釋第一條,啟用第二條
  RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
  #RewriteRule ^(.*)$ index.php [E=PATH_INFO:$1,QSA,PT,L]  
 
</IfModule>

#2.X+版本使用如下規(guī)則:
<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環(huán)境


#1.X版本使用如下規(guī)則:
location / {
    if (!-e $request_filename){
        rewrite ^/(.*)$ /index.php/$1 last;
     }
}

#2.X+版本使用如下規(guī)則:
location / {
    if (!-e $request_filename){
        rewrite ^/(.*)$ /index.php?p=$1 last;
     }
}

作者:chuangxinkeji

上一頁: win7系統(tǒng)電腦藍(lán)屏代碼0X000000F4的處理和預(yù)防方法   下一頁: 快消品二維碼掃碼領(lǐng)紅包促銷方案--營銷新利器一物一碼