IIS重定向到SubFolder

时间:2011-07-08 14:23:42

标签: iis-7 redirect rewrite

我正在尝试将网址重定向到子文件夹,例如:

http://localhost/test是用户输入的内容,但我希望将其重定向到http://localhost/test/public

我在网络上找不到任何资源,我找到的大部分资源都在Apache上没有帮助。

感谢。

PlayKid

1 个答案:

答案 0 :(得分:0)

在网站Root中的web.config文件中,您可以输入以下内容:

<?xml version="1.0"?>
<configuration>
    <location path="test">
        <system.webServer>
            <httpRedirect enabled="true" destination="test/public" httpResponseStatus="Permanent" />
        </system.webServer>
    </location>
</configuration>