<?xml version="1.0" encoding="UTF-8"?>
<configuration>
 <system.webServer>
   <rewrite>
     <rules>
       <rule name="Handle History Mode and custom 404/500" stopProcessing="true">
         <match url="(.*)" />
         <conditions logicalGrouping="MatchAll">
           <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
           <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
         </conditions>
         <action type="Rewrite" url="/ticketsystemnew/{R:1}.html" />
       </rule>
     </rules>
   </rewrite>
 </system.webServer>
</configuration>

  

相关文章:

  • 2022-12-23
  • 2021-11-20
  • 2022-12-23
  • 2022-01-05
  • 2021-09-30
  • 2022-02-19
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-06-14
  • 2022-12-23
  • 2021-07-03
  • 2022-12-23
  • 2022-01-16
  • 2021-06-20
相关资源
相似解决方案