it-tools/zh-CN/public/web.config
麦哲伦 730a68b92a Added Chinese version
Added Chinese version
2024-02-04 17:12:45 +08:00

18 lines
No EOL
674 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<!-- 发送请求到控制器 -->
<rule name="Send Requests To Front Controller" stopProcessing="true">
<match url="^" ignoreCase="false" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.html" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>