web.config 索引重定向

发布于 2024-10-29 09:21:36 字数 1937 浏览 2 评论 0原文

我对托管在 Windows 服务器上的项目使用标准 web.config 文件。它负责 2 项任务。

  1. 它将网站的非 www 版本重定向到 www 版本。
  2. 它将索引文件重定向到根目录。

见下文:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
     <modules runAllManagedModulesForAllRequests="true" />
        <rewrite>
            <rules>
                <rule name="CanonicalHostNameRule1" stopProcessing="true">
                    <match url="index\.asp(?:l)?" />
                        <conditions>
                            <add input="{HTTP_HOST}" pattern="example\.com$" />
                        </conditions>
                        <action type="Redirect" url="http://www.example.com/" />
                </rule>
                <rule name="CanonicalHostNameRule2" stopProcessing="true">
                    <match url="(.*)" />
                    <conditions>
                        <add input="{HTTP_HOST}" pattern="^example\.com$" />
                    </conditions>
                    <action type="Redirect" url="http://www.example.com/{R:1}" />
                </rule>
            </rules>
        </rewrite>
  </system.webServer>
</configuration>

这非常有效,除了 1 个问题。索引重定向将所有子目录重定向到主目录index。

例如:

http://www.example.com/index.asp 正在重定向到 http://www.example.com 就像它应该的那样。

但是, http://www.example.com/about/index.asp 也是重定向到 http://www.example.com。我希望它重定向到 http://www.example.com/about/

任何帮助都会不胜感激。

I use a standard web.config file for my projects that are hosted on Windows servers. It takes care of 2 tasks.

  1. It redirects the non-www version of the site to the www version.
  2. It redirects the index file to the root.

See below:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
     <modules runAllManagedModulesForAllRequests="true" />
        <rewrite>
            <rules>
                <rule name="CanonicalHostNameRule1" stopProcessing="true">
                    <match url="index\.asp(?:l)?" />
                        <conditions>
                            <add input="{HTTP_HOST}" pattern="example\.com$" />
                        </conditions>
                        <action type="Redirect" url="http://www.example.com/" />
                </rule>
                <rule name="CanonicalHostNameRule2" stopProcessing="true">
                    <match url="(.*)" />
                    <conditions>
                        <add input="{HTTP_HOST}" pattern="^example\.com$" />
                    </conditions>
                    <action type="Redirect" url="http://www.example.com/{R:1}" />
                </rule>
            </rules>
        </rewrite>
  </system.webServer>
</configuration>

This works great, except for 1 problem. The index redirect is redirecting all sub-directories to the main, index.

For example:

http://www.example.com/index.asp is redirecting to http://www.example.com like it should.

But, http://www.example.com/about/index.asp is also redirecting to http://www.example.com. I would like it to redirect to http://www.example.com/about/

Any help would be greatly appreciated.

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

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

发布评论

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

评论(1

爱已欠费 2024-11-05 09:21:36

好吧,在这里没有得到回应后,我在各个.Net论坛上发帖,终于得到了答案。这条规则将修复它:

<rule name="redirect index.asp" stopProcessing="true">
    <match url="^(\w*/)?index\.asp" />
       <conditions>
         <add input="{HTTP_HOST}" pattern="domain\.com$" />
       </conditions>
     <action type="Redirect" url="http://www.domain.com/{R:1}" />
</rule>

Well, after getting no response here, I posted on various .Net forums and finally got an answer. This rule will fix it:

<rule name="redirect index.asp" stopProcessing="true">
    <match url="^(\w*/)?index\.asp" />
       <conditions>
         <add input="{HTTP_HOST}" pattern="domain\.com$" />
       </conditions>
     <action type="Redirect" url="http://www.domain.com/{R:1}" />
</rule>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文