Windows
將多個站點綁定到一個站點 - 以程式方式 - iis 7
我有不同的網站(超過 300 個)www.ca1.com、www.ca2.com。我想以程式方式將所有這些站點綁定到我的主站點 - www.myMainsite.com。你能幫我解決這個問題嗎?謝謝。
如果您願意,您可以利用 PowerShell 的Set-WebConfiguration介面來配置定義的system.webserver對象,將處理為該定義的對象配置 URL 重定向的任務:
在哪裡:
\sites\Default Web Site
是您的網站。domain.com
是你的目的地Set-WebConfiguration system.webServer/httpRedirect "IIS:\sites\Default Web Site" -Value @{enabled="true";destination="domain.com";exactDestination="true";httpResponseStatus="Permanent"}
我確信 IIS 配置還有更多介面,但這可能是最簡單的介面。