IIS7 文件夹名称 - 是“+”字符有效吗?

发布于 2024-12-15 03:13:54 字数 386 浏览 1 评论 0 原文

我正在尝试创建这样的 Google Plus 重定向...... www.domain.com/+

我创建了一个名为“+”的文件夹,里面有一个简单的default.html 文件。 Default.html 是一个默认文档,它包含一个简单的 JS 重定向。我收到 404 错误,例如文件夹和文件不存在。很奇怪!

加号字符 对于文件夹名称似乎是有效的,所以我很困惑。 有什么想法吗?

谢谢

I'm attempting to create a Google Plus redirect like this...
www.domain.com/+

I have created a folder named "+" with a simple default.html file inside. Default.html is a default document and it contains a simple JS redirect. I get a 404 like the folder and file do not exist. Very strange!

The plus character appears to be valid for folder names so I'm stumped.
Any ideas?

Thanks

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

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

发布评论

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

评论(2

无所的.畏惧 2024-12-22 03:13:54

在 web.config 中进行一个漂亮的 301 重定向怎么样:

<configuration>
    <system.webServer>
        <security>
            <requestFiltering allowDoubleEscaping="true" />
        </security>
    </system.webServer>
    <location path="+">
        <system.webServer>
        <httpRedirect enabled="true" destination="http://plus.google.com/{userprofileid}" httpResponseStatus="Permanent" />
        </system.webServer>
    </location>
</configuration>

编辑:我允许双重转义,这会禁用 IIS7 将 + 作为空格插入。解决方案来自: http://www.ifinity.com.au/Blog/entryid/60/404-error-in-iis-7-when-using-a-url-with-a-plus-sign-在路径中

How about a nice 301 redirect in a web.config:

<configuration>
    <system.webServer>
        <security>
            <requestFiltering allowDoubleEscaping="true" />
        </security>
    </system.webServer>
    <location path="+">
        <system.webServer>
        <httpRedirect enabled="true" destination="http://plus.google.com/{userprofileid}" httpResponseStatus="Permanent" />
        </system.webServer>
    </location>
</configuration>

Edit: I allowed double escaping which disables IIS7's interpolation of a + as a space. Solution obtained from: http://www.ifinity.com.au/Blog/entryid/60/404-error-in-iis-7-when-using-a-url-with-a-plus-sign-in-the-path

¢蛋碎的人ぎ生 2024-12-22 03:13:54

在 IIS7 中,默认情况下,+ 通常会作为空格插入。 IIS7 可能允许名为 + 的文件夹,但 URL 处理器首先将其插入空格。

请参阅http://www.ifinity.com.au/Blog/entryid/60/404-error-in-iis-7-when-using-a-url-with-a-plus-sign- in-the-path 寻求解决方法,但这可能会带来安全漏洞。

In IIS7, by default, + is often times interpolated as a space. IIS7 may allow for folders named +, but the URL processor is interpolating it first to a space.

See http://www.ifinity.com.au/Blog/entryid/60/404-error-in-iis-7-when-using-a-url-with-a-plus-sign-in-the-path for a workaround, but this potentially opens up security flaws.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文