2017-08-09 9 views
0

私はこのようになりますディレクトリがあります。私のルートディレクトリにすべての要求をIISサーバーのルートディレクトリにリダイレクトする方法はありますか?

/root 
    /home 
    /about 
    index.html 

マイexample.comドメインのポイントを、私は中に滞在するexample.com/homeまたはexample.com/aboutな​​どのすべての要求を設定しますルートディレクトリを開き、index.htmlを返します。

答えて

0

あなたのindex.html以外のホームページには、(css、js、およびその他のリソースを含む)以外のリクエストをルート上に書き直します。

<rule name="rewrite to index" enabled="true" stopProcessing="true"> 
    <match url="^$" negate="true" /> 
    <action type="Rewrite" url="/index.html" /> 
</rule> 
関連する問題