如果根目录中有 .htaccess 文件,如何禁用子文件夹中 .htaccess 的影响?

发布于 2024-12-09 10:41:08 字数 313 浏览 0 评论 0原文

在我的应用程序中,我为用户和管理员提供了单独的空间,例如 如果 www.example.com 是我的网站,那么 www.example.com/admin 就是我的管理 URL。

我在根目录中使用 .htaccess 文件,它影响了我的管理文件夹中的一些功能,但我不想这样做。

例如,考虑下面是我的文件夹结构

..
.htaccess
index.php
admin

因此,如果我不希望 .htaccess 规则应用在 admin 文件夹中,有什么办法吗?

In my application I have separate spaces for user and admin like
if www.example.com is my website, then www.example.com/admin is my admin URL.

I am using a .htaccess file in my root, and it affects some of the functionality in my admin folder, which I don't want to.

For example, consider below is my folder structure

..
.htaccess
index.php
admin

So if I don't want the .htaccess rules to apply within the admin folder, is there any way?

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

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

发布评论

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

评论(2

吾家有女初长成 2024-12-16 10:41:08

对于无法直接访问 httpd.conf 的用户(例如共享主机),只需将另一个 .htaccess 文件放入子文件夹中并设置为所需的行为即可。

For people that don't have direct access to httpd.conf (shared hosting for example), just put another .htaccess file in the subfolder and set to the desired behavior.

巷子口的你 2024-12-16 10:41:08

您应该能够执行此操作,但它确实需要对 httpd.conf 配置的写访问权限。

如果您有权访问 httpd.conf 文件,类似的内容

    <Directory /admin>
      AllowOverride None
    </Directory

应该可以解决问题。

另请注意,不建议使用根目录中的 .htaccess 文件(正如您所说)。您最好将 htaccess 文件的内容移动到 httpd.conf 文件的正确上下文中。

更多信息可以在 http://httpd.apache.org/docs 找到/2.2/mod/core.html#allowoverride

You should be able to do this, but it does require write access to the httpd.conf configuration.

If you have access to the httpd.conf file, something like

    <Directory /admin>
      AllowOverride None
    </Directory

should do the trick.

Also, note that using .htaccess files in the root directory (as you said you did) is not a recommended approach. You'd be better off moving the contents of the htaccess file into the proper contexts of the httpd.conf file.

More information can be found at http://httpd.apache.org/docs/2.2/mod/core.html#allowoverride

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