Iis

如何在不重定向 IIS7.5 的情況下引導流量?

  • September 25, 2014

我們有一台執行 Window Server 2003 的生產機器。以前,開發是在 WAMP 環境中進行的,但是一些使用者正在遷移到 IIS。

問題是,我們在伺服器上有一個名為 /home/ 的目錄,當訪問該目錄時,會將所有資訊導向其他地方。

例如

yourwebsite.com/home/

實際上會指向

yourwebsite.com/tabular/

不重定向頁面(即路徑不會改變)?這在 IIS7.5 中怎麼可能?

謝謝,

自己

您需要為 IIS 安裝URL 重寫模組

然後,您可以編寫一個規則,將 yourwebsite.com/home/ 重寫為 yourwebsite.com/tabular/

該規則將儲存在應用程序的 web.config 中。此範例將 /home/ 下的所有 URL 重寫為 /tabular/

<rule name="Rewrite home to tabular">
   <match url="^/home/(.*)" />
   <action type="Rewrite" url="/tabular/{R:1}" />
</rule>

引用自:https://serverfault.com/questions/630321