如果根目录中有 .htaccess 文件,如何禁用子文件夹中 .htaccess 的影响?
在我的应用程序中,我为用户和管理员提供了单独的空间,例如 如果 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于无法直接访问 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.
您应该能够执行此操作,但它确实需要对 httpd.conf 配置的写访问权限。
如果您有权访问 httpd.conf 文件,类似的内容
应该可以解决问题。
另请注意,不建议使用根目录中的 .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
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