 |
聯(lián)系人:李先生 |
電 話:029-87878512 |
手 機(jī):13468700578 |
地 址:西安市歐亞大道絲路國(guó)際創(chuàng)意夢(mèng)工廠4號(hào)樓 |
在線咨詢: |
762176615 |
Email:junsoft@126.com |
|
 |
|
|
|
軟件開(kāi)發(fā)中IIS中的rewrite規(guī)則 |
 |
發(fā)布者:西安軟件公司 發(fā)布時(shí)間:2021/7/13 閱讀:次 |
 |
<?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/{R:1}" /> </rule> </rules> </rewrite> </system.webServer> </configuration>
|
|