开发者

How to ignore .htaccess?

开发者 https://www.devze.com 2023-03-03 06:38 出处:网络
Is there a way to tell Apache to ignore other .htaccess files under current directory? For example: /web/.htaccess [this is parsed, I would like to define the rule here]

Is there a way to tell Apache to ignore other .htaccess files under current directory? For example:

/web/.htaccess [this is parsed, I would like to define the rule here]
/web/uploads/.htaccess [this should 开发者_如何学编程be ignored]


In your main apache config, add the directive AllowOverride None.

This will prevent it from looking at .htaccess files.

For more info, see http://httpd.apache.org/docs/2.0/mod/core.html#allowoverride

0

精彩评论

暂无评论...
验证码 换一张
取 消