2014-01-23 50 views
0

我希望爲所有頁面請求創建一個返回相同html頁面的站點。IIS7.5將所有請求指向一個頁面

例如在同一個頁面將送達所有請求如下:

http://holdingsite 
http://holdingsite/foo 
http://holdingsite/foo/bar 
http://holdingsite/foo.aspx 
http://holdingsite/foo.html 

需要什麼樣的配置,以確保每一個請求是針對這一個頁面?

回答

0

如果可以,安裝URL Rewrite Module

然後,您可以添加一個重寫規則,以你的配置

<configuration> 
    <system.webServer> 
     <rewrite> 
      <rules> 
       <rule name="catchall" stopProcessing="true"> 
        <match url=".*" /> 
        <action type="Rewrite" url="/somepage.htm" /> 
       </rule> 
      </rules> 
     </rewrite> 
    </system.webServer> 
</configuration> 

N.b您還可以通過IIS,一旦你已經安裝了模塊

配置此
相關問題