如何禁用特定文件夹中的父 htaccess 规则

问题描述 投票:0回答:1

我在主文件夹中有一个 htaccess 。我不想将主 htaccess 应用到主文件夹内的特定文件夹。

--Main Folder
  .htaccess
  some folder
  another folder --> don't want htaccess to apply here
  some files
  ...

我该怎么做?

apache .htaccess
1个回答
1
投票

只需在该特定文件夹中创建一个单行 .htaccess,您不希望应用主 .htaccess 中的规则:

RewriteEngine On

请注意,这仅适用于

mod_rewrite
指令。默认情况下,在服务器上下文或父上下文中定义的
mod_rewrite
规则将对所有子目录生效。通过在子目录中添加
RewriteEngine On
,我们打开
mod_rewrite
引擎,但不定义任何规则来有效地使该子目录和该子目录的所有子目录忽略 root/parent 中定义的规则。

© www.soinside.com 2019 - 2024. All rights reserved.