web.config 的 location 元素中的多个路径
如何在 web.config 的一个 location
元素中指定多个路径?
<location path="Images">
<system.web>
<authorization>
<allow users="?" />
</authorization>
</system.web>
</location>
我们想向位置添加样式和图像,例如
。
是否可以在位置元素中放置多个路径(以及我将如何做到这一点)?
How can I specify multiple paths in one location
element in web.config?
<location path="Images">
<system.web>
<authorization>
<allow users="?" />
</authorization>
</system.web>
</location>
We would like to add styles and images to location, e.g. <location path="images, styles">
.
Is it possible to put multiple paths in location element (and how would I do that)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
除非它们共享相同的根文件夹,否则您无法执行此操作。众所周知,我会将 images/styles/javascript 转储到“_res”或“_system”等单个文件夹中,并授权该文件夹
有关位置元素的更多信息:http://msdn.microsoft.com/en-us/library/b6x6shw7(v=vs.71).aspx< /a>
关于路径属性:
You cannot do this unless they share the same root folder. I've been known to dump images/styles/javascript into a single folder like "_res" or "_system" and authorize that folder
More info on the location element: http://msdn.microsoft.com/en-us/library/b6x6shw7(v=vs.71).aspx
On the path attribute:
您必须为要控制访问的每个位置使用一个位置元素。路径可以是目录,这将使规则应用于该目录中的所有内容。
You must use one location element for each location that you want to control access to. The path can be a directory, which will make the rules apply to everything in that directory.