1

IIS7 301 使用 web.config 文件重定向...

不工作....

<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>

任何人都可以解决这个问题吗?

4

0 回答 0