0
所以我應該能夠訪問rsstest/test.xml並將其轉發到article.xml,如果我沒有用戶代理的wibble。誰能告訴我這個IIS URL重寫有什麼問題嗎?
爲什麼不能正常工作?
<rule name="df" patternSyntax="ExactMatch" stopProcessing="true"> <match url="^rsstest/test.xml" negate="true" /> <conditions> <add input="{HTTP_USER_AGENT}" pattern="Wibble" negate="true" /> </conditions> <action type="Rewrite" url="article.xml" /> </rule>
在此先感謝
我相信它與URL中的'^'有關,而且您正在使用'ExactMatch'。 – Ren
感謝您的回覆。我試圖拿出這個無濟於事。 – user1242345
當你說你想要被轉發時,你的意思是重定向而不是重寫? – Ren