排除管理文件夹的htaccess

时间:2009-11-11 15:09:03

标签: .htaccess mod-rewrite

  1. 如何为某些文件夹禁用.htaccess
  2. 示例我想要为我的admin文件夹
  3. 排除htaccess
  4. 让我知道..

2 个答案:

答案 0 :(得分:2)

你可以在httpd.conf

中做同样的事情
<Location /admin>
 AllowOverride None
</Location>

请参阅文档here

答案 1 :(得分:1)

您可以使用此规则停止该特定网址路径前缀的重写过程:

RewriteEngine on
RewriteRule ^admin($|/) - [L]