我有一个运行子域和域映射的 Wordpress 多站点。
域配置为 Serveralias。
ServerAlias *.domain1.tld *.domain2.tld *.domain3.tld
基本上我正在尝试帮助使用新模板并希望
dev.domain.tld
只能通过身份验证访问
通常我会使用类似的东西:
AuthUserFile /var/www/vhosts/domain.tld/httpdocs/.htpasswd
AuthGroupFile /dev/null
AuthName "Area 51"
AuthType Basic
<limit GET POST>
require valid-user
</limit>
<Files *>
Order allow,deny
Allow from all
Satisfy any
</Files>
但这将同时保护所有(子)域。有任何想法吗?