2014-02-06 93 views
0

我使用bellow web.config將請求重定向到另一個文件夾。但問題是需要重定向文件的請求。將所有請求重定向到另一個目錄

<?xml version="1.0" encoding="UTF-8"?> 
<configuration> 
<system.webServer> 
    <httpRedirect enabled="true" destination="http://www.mysite.com/ppc/" /> 
</system.webServer> 
</configuration> 

例如http://www.mysite.com/original/http://www.mysite.com/ppc/作品

http://www.mysite.com/original/a.phphttp://www.mysite.com/ppc/不工作。

它結束了去http://www.mysite.com/ppc/a.php

請幫助。

回答

0

我找到了解決方案。我們還必須使用確切的目的地選項。

<httpRedirect enabled="false" destination="http://www.mysite.com/ppc/" exactDestination="true" childOnly="true" /> 
0

嘗試使用IIS URL重寫模塊,而不是發出重定向或使用url重寫來對模式匹配執行重定向。

相關問題