2017-08-09 88 views

回答

0

此规则将将所有(包括css,js和其他资源)非主页请求重写到您的index.html根目录上。

<rule name="rewrite to index" enabled="true" stopProcessing="true"> 
    <match url="^$" negate="true" /> 
    <action type="Rewrite" url="/index.html" /> 
</rule> 
相关问题