使用web.config文件进行IIS7 301重定向...
不工作....
<location path="ProductsAndServices/CustomProfessionalServices.aspx">
<system.webServer>
<httpRedirect enabled="true" destination="ProductsAndServices/business-video-platform.aspx" httpResponseStatus="Permanent" />
</system.webServer>
</location>
在上面的位置标签中我试图使用ASCII代码给出一个路径,如“News / PressReleases / PressReleases.aspx”,但它仍然无效。
然后我尝试给文件位置它也无法正常工作。如下图所示
<location path="ULNotifier.zip">
<system.webServer>
<httpRedirect enabled="true" destination="Support/Resources.aspx?link=Support" httpResponseStatus="Permanent" />
</system.webServer>
</location>
但是,当我尝试单页时,它的工作原理如下,
<location path="Solutions.aspx">
<system.webServer>
<httpRedirect enabled="true" destination="Solutions/OnlineVideoPlatform.aspx?link=Solutions" httpResponseStatus="Permanent" />
</system.webServer>
</location>
任何人都可以解决这个问题吗?