web.config 的 location 元素中的多个路径

发布于 2024-10-08 15:32:35 字数 401 浏览 8 评论 0原文

如何在 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 技术交流群。

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

发布评论

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

评论(2

甜中书 2024-10-15 15:32:35

除非它们共享相同的根文件夹,否则您无法执行此操作。众所周知,我会将 images/styles/javascript 转储到“_res”或“_system”等单个文件夹中,并授权该文件夹

有关位置元素的更多信息:http://msdn.microsoft.com/en-us/library/b6x6shw7(v=vs.71).aspx< /a>

关于路径属性:

指定所包含的配置设置适用的资源。使用缺少路径属性的 location 将配置设置应用于当前目录和所有子目录。如果使用的 location 不带路径属性且 allowedOverride 为 False,则子目录中的 Web.config 文件无法更改配置设置。

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:

Specifies the resource that the contained configuration settings apply to. Using location with a missing path attribute applies the configuration settings to the current directory and all child directories. If location is used with no path attribute and allowOverride is False, configuration settings cannot be altered by Web.config files that are in child directories.

李不 2024-10-15 15:32:35

您必须为要控制访问的每个位置使用一个位置元素。路径可以是目录,这将使规则应用于该目录中的所有内容。

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.

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