网有文档 https://uniapp.dcloud.io/collocation/manifest?id=h5-router
"h5" : {
"title" : "xxx",
"domain" : "",
"router":{
"mode":"history"
}
}
- 安装 IIS UrlRewrite
- 在你的网站根目录中创建一个
web.config文件,内容如下:
<?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="/" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
浙公网安备 33010602011771号