apache_conf htaccess保护特定域名

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache_conf htaccess保护特定域名相关的知识,希望对你有一定的参考价值。

<If "%{SERVER_NAME} == 'domain.tld'">
    Order Deny,Allow
    AuthName "Protected access"
    AuthType Basic
    AuthUserFile /path/to/.htpasswd
    Require valid-user

    #Allow valid-user
    Deny from all
    Allow from xx.xx.xx.xx
    Satisfy any
</If>

以上是关于apache_conf htaccess保护特定域名的主要内容,如果未能解决你的问题,请参考以下文章

apache_conf 保护.htaccess

apache_conf 保护.htaccess免受未经授权的访问

apache_conf 使用基于主机的.htaccess / .htpasswd保护网站。

apache_conf 跨域资源共享策略覆盖.htaccess

apache_conf 忽略htaccess重定向中的本地开发域

apache_conf 从php执行保护wordpress上传目录。在uploads目录中添加新的.htaccess文件。