允许匿名访问 Asp.Net 中的特殊文件
我开始在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题出在路径语法上。
这不起作用:
这确实起作用:
The problem is with the path syntax.
This does not work:
This DOES work:
不确定这是否是问题所在,但您的 xml 中缺少引号。
Not sure if this is the problem but you're missing a quote mark in your xml.