0
我在我的web.config以下重寫規則這是工作的罰款強制使用HTTPS如果登錄asp.net
<rule name="RedirectToHttps" stopProcessing="true">
<match url="(.*)">
<conditions>
<add input="{HTTPS}" pattern="off" />
</conditions>
<action type="Redirect" url="https://example.com/{R:1}" redirectType="SeeOther" />
</rule>
現在的問題是,我只希望這個規則適用於已登錄的用戶,有什麼辦法可以在web.config中做到這一點?如果沒有其他方法可以做到這一點?
在此先感謝
謝謝。只是一個問題,當它重新定向時,它會添加:80到主機的末端,即site.local:80/something.aspx我在本地機器上使用它。有什麼建議麼? – Peuge