迅睿開源框架是一款PHP8高性能·簡單易用的PHP開源開發(fā)框架, 基于MIT開源許可協(xié)議發(fā)布,不限制商業(yè)使用,以多端互聯(lián)為設(shè)計理念, 支持的微信公眾號、小程序、APP客戶端、移動端網(wǎng)站、PC網(wǎng)站等多終端式管理系統(tǒng)。
業(yè)務(wù)經(jīng)理
微信掃描以上二維碼
028-61286886
技術(shù)咨詢
請問:iis 服務(wù)器上手機端的偽靜態(tài)怎么配置???手機端采用的是目錄瀏覽模式
<?xml version="1.0" ?>
<rules>
<rule name="xunruicms mobile" stopProcessing="true">
<match url="^mobile/(.*)$" ignoreCase="false"/>
<conditions>
<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="/mobile/index.php"/>
</rule>
<rule name="xunruicms PC" stopProcessing="true">
<match url=".(js|ico|gif|jpe?g|bmp|png|css)$" negate="true"/>
<action type="Rewrite" url="/index.php"/>
</rules>
<?xml version="1.0" ?>
<rules>
<rule name="xunruicms mobile" stopProcessing="true">
<match url="^mobile/(.*)$" ignoreCase="false"/>
<conditions>
<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="/mobile/index.php"/>
</rule>
<rule name="xunruicms PC" stopProcessing="true">
<match url=".(js|ico|gif|jpe?g|bmp|png|css)$" negate="true"/>
<conditions>
<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>