我正在运行IIS 8,并且我从虚拟文件夹设置了快速URL重定向。该网址类似于home.cginet/applicaton/
,并重定向到home.cginet/applicaton/tools/
。
随机发生的事情是,在网址home.cginet/applicaton/
刷新我的网页时,有时会返回home.cginet/applicaton/tools/tools/tools/
。为了解决这个问题,我必须刷新3-4次才能启动页面。
只是想知道是否有人在他们的网站上看到过这种行为?
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<httpRedirect enabled="true" destination="/Directory/staff/" exactDestination="false" childOnly="true" />
</system.webServer>
</configuration>