迅睿CMS伪静态IIS环境下怎么设置规则
迅睿CMS伪静态IIS环境下规则设置如下:
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="Imported Rule 1" stopProcessing="true"> <match url=".(js|ico|gif|jpe?g|bmp|png|css)$" negate="true" /> <conditions logicalGrouping="MatchAll"> <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" /> </conditions> <action type="Rewrite" url="/index.php" /> </rule> </rules> </rewrite> </system.webServer> </configuration>
本文网址:https://www.dedexuexi.com/jzjc/xrjc/syjq/3476.html
本站部分文章搜集与网络,如有侵权请联系本站,转载请说明出处。