0
我有一個目錄,看起來像這樣:如何將所有請求重定向到IIS服務器上的根目錄?
/root
/home
/about
index.html
我example.com的域名指向到我的根目錄下,我想配置像example.com/home或example.com/about所有請求留在根目錄並返回index.html。
我有一個目錄,看起來像這樣:如何將所有請求重定向到IIS服務器上的根目錄?
/root
/home
/about
index.html
我example.com的域名指向到我的根目錄下,我想配置像example.com/home或example.com/about所有請求留在根目錄並返回index.html。
此規則將將所有(包括css,js和其他資源)非主頁請求重寫到您的index.html根目錄上。
<rule name="rewrite to index" enabled="true" stopProcessing="true">
<match url="^$" negate="true" />
<action type="Rewrite" url="/index.html" />
</rule>