0
我們已將我們的網站從一個php apache站點移動到一個asp.net mvc站點,並試圖讓特定的重定向工作但陷入困境。將特定頁面重定向到iis web.config中的另一個特定頁面
基本上我想爲http://www.mysite.com/index.php?pr=about_us的任何請求重定向到http://www.mysite.com/About-Us
我已經試過,但它不工作。有任何想法嗎?
<rewrite>
<rules>
<rule name="About Us" stopProcessing="true">
<match url="index.php?pr=About_Us" ignoreCase="false" />
<action type="Redirect" redirectType="Permanent" url="http://www.mysite.com/About-Us" />
</rule>
</rules>
</rewrite>
我也試過這個,但它也沒有工作。
<httpRedirect enabled="true" exactDestination="true" httpResponseStatus="Permanent">
<add wildcard="index.php?pr=About_Us" destination="/About-Us" />
</httpRedirect>
我有大約一打這些特定的重定向,我需要實現各種頁面。
任何幫助,非常感謝! 感謝