代码之家  ›  专栏  ›  技术社区  ›  Gabriel Solomon

正在删除.htaccess身份验证限制

  •  0
  • Gabriel Solomon  · 技术社区  · 15 年前

    我有一个具有.htaccess身份验证的项目,但我想为某个资产文件夹删除它。

    我尝试在该文件夹中添加一个htaccess:

    AuthType none
    Satisfy Any
    
    Allow from All
    Order Allow, Deny
    

    但它似乎不起作用:( 有什么想法吗?非常感谢

    编辑 我试图取消保护的目录不是真正的目录,而是重写规则。 我没有访问httpd.conf的权限

    2 回复  |  直到 15 年前
        1
  •  2
  •   Michael Cramer    15 年前

    没有看到你的全部.htaccess,我猜,但是像这样的情况如何:

    RewriteEngine On
    RewriteRule ^assets/ - [E=allow-assets:1]
    Allow from env=allow-assets
    

    这可能进入父目录的.htaccess,而不是资产。

        2
  •  0
  •   Josh Andreas Rehm    15 年前

    如果您有权访问/etc/httpd.conf,您可能会这样做——是吗?