2013-10-02 47 views

回答

0

,因爲我無法得到這個工作(IIS 7 Manager的httpRedirect):

web.config: 

<?xml version="1.0" encoding="UTF-8"?> 
<configuration> 
    <system.webServer> 
     <httpRedirect enabled="true" destination="http://localhost/" exactDestination="true" httpResponseStatus="Permanent" /> 
    </system.webServer> 
</configuration> 

我就可以使用的電話線中的Java腳本在.cshtml的頂部:

<script type="text/javascript">window.location = "http://localhost/"</script> 

我更喜歡使用httpRedirect,但這是迄今爲止最好的解決方法,不需要重新部署應用程序。

相關問題