使用变量在 IIS 中重定向 ($1$2)

发布于 2024-12-16 02:30:08 字数 545 浏览 2 评论 0原文

我有这样的重定向设置

<rule name="EN" stopProcessing="true">
    <match url="en/(.*)" />
    <conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
    <action type="Redirect" url="$1$2" />
</rule>

,但是它无法正常工作。当用户输入 www.mysite.com/en 时,我试图让它成为这样/anything.aspx。它重定向到 www.mysite.com/anything.aspx

我有一种感觉设置错误,可能是语法错误。

I have a redirect set up like this

<rule name="EN" stopProcessing="true">
    <match url="en/(.*)" />
    <conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
    <action type="Redirect" url="$1$2" />
</rule>

However, it is not working properly. I'm trying to get it to be so when a user types in www.mysite.com/en/anything.aspx. That it redirects to www.mysite.com/anything.aspx

I have a feeling I've set something up wrong, maybe incorrect syntax.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无力看清 2024-12-23 02:30:08

您的情况是否匹配,因此您知道该部分没问题?
我不认为你使用 $1 $2 而是 {R:1} {R:2} 等。

<action type="Redirect" url="{R:1}" />

我没有测试过这个,但我会尝试这个:

<rule name="EN" stopProcessing="true">
  <match url="en/(.*)" />
  <conditions>
    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
  </conditions>
  <action type="Redirect" redirectType="Permanent" url="{R:1}" />    
</rule>

Does your condition get a match so you know that part is OK?
I dont think you use $1 $2 but {R:1} {R:2} etc.

<action type="Redirect" url="{R:1}" />

I have not tested this, but I would try this:

<rule name="EN" stopProcessing="true">
  <match url="en/(.*)" />
  <conditions>
    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
  </conditions>
  <action type="Redirect" redirectType="Permanent" url="{R:1}" />    
</rule>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文