允许匿名访问 Asp.Net 中的特殊文件

发布于 2024-08-15 00:41:25 字数 514 浏览 3 评论 0原文

我开始在我的 asp.net 站点中使用 dotless,这需要一个特殊的 httphandler 才能工作。该网站使用表单身份验证。问题是:当我登录到 http://example.org/stylesheets/mystyles 的请求时.less 工作正常。它给了我适当的CSS。如果我没有登录,请求将被拒绝,并且我将被重定向到登录页面。有没有办法允许匿名访问该文件?这是行不通的:

<location path="~/stylesheets">
    <system.web>
        <authorization>
            <allow users="*" />
        </authorization>
    </system.web>
</location>

I started using dotless in my asp.net site which requires a special httphandler to work. The site uses Forms Authentication. Here's the problem: When I'm logged in the request to http://example.org/stylesheets/mystyles.less works fine. It gives me back the appropriate css. If I'm not logged in the request is denied and I'm redirected to the login page. Is there a way to allow this file to be accessed anonymously? This is not working:

<location path="~/stylesheets">
    <system.web>
        <authorization>
            <allow users="*" />
        </authorization>
    </system.web>
</location>

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

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

发布评论

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

评论(2

偏闹i 2024-08-22 00:41:25

问题出在路径语法上。

这不起作用:

<location path="~/stylesheets">
    <system.web>
        <authorization>
            <allow users="*" />
        </authorization>
    </system.web>
</location>

这确实起作用:

<location path="stylesheets">
    <system.web>
        <authorization>
            <allow users="*" />
        </authorization>
    </system.web>
</location>

The problem is with the path syntax.

This does not work:

<location path="~/stylesheets">
    <system.web>
        <authorization>
            <allow users="*" />
        </authorization>
    </system.web>
</location>

This DOES work:

<location path="stylesheets">
    <system.web>
        <authorization>
            <allow users="*" />
        </authorization>
    </system.web>
</location>
淡墨 2024-08-22 00:41:25

不确定这是否是问题所在,但您的 xml 中缺少引号。

<location path="~/stylesheets">

Not sure if this is the problem but you're missing a quote mark in your xml.

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