WIN主机下IIS8.5WEB服务器YZMCMS的伪静态规则。具体操作方法如下:
第1步、我们需要在网站根目录 webroot 文件夹下,新建一个 web.config 文件。然后复制相应的伪静态规则进去保存。
//如果YZMCMS网站程序是放在根目录下,那么复制下面的代码保存到 web.config 文件里就可以了; <?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="OrgPage" stopProcessing="true"> <match url="^(.*)$" /> <conditions logicalGrouping="MatchAll"> <add input="{HTTP_HOST}" pattern="^(.*)$" /> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> <action type="Rewrite" url="index.php?s={R:1}" /> </rule> </rules> </rewrite> </system.webServer> </configuration>
做完以上步聚,就完成了对WIN主机下IIS的YZMCMS伪静态规则的配置。