一面膜胸口一面吻最新版_高清中文国产欧美_高清国内白嫩美女在线观看_亚洲午夜久久国产精品_欧美激情视频中文在线_亚洲精品性色妇AV蜜桃久_日本在线区一区二_a级黄色片网站亚洲三级小视频

    xyhcms 行云海CMS在iis下的偽靜態web.config 規則
    文章作者:恒愛云[恒愛網絡] 閱讀次數:2298 發布時間:2025-8-15

    xyhcms 行云海CMS在iis下的偽靜態 web.config 文件必須是utf8格式,內容如下:


    <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
      <location path="." inheritInChildApplications="false">
        <system.webServer>
                        
            <!--start-rewrite-->
            <rewrite>
                <rules>    
                
                    <rule name="Rewrite to index.php" stopProcessing="true">
                        <match url="^(.*)$" />
                                          
                        <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>    
            <!--end-rewrite-->    
        </system.webServer>
     </location>
    </configuration>