0
これは可能ですが、いくつかの異なるURLといくつかの異なるサブドメインでホストされているアプリケーションがあります。.htaccess異なる.htpasswdファイル用の文
これらはそれぞれ基本的な保護セクション(htpasswdを使用)を持っています。
私は、異なるファイルを指す別の束を持つよりむしろ、1つのhtaccessファイルを持つことができたいと思います。
I持って、次のファイル構造:
の.htaccess の.htpasswd-domainone の.htpasswd-domaintwo の.htpasswd-domainthree
このような何かをする方法はありますか?
<If "%{HTTP_HOST} == 'domainone'">
AuthUserFile /file/location/.htpasswd-domainone
</If>
<If "%{HTTP_HOST} == 'domaintwo'">
AuthUserFile /file/location/.htpasswd-domaintwo
</If>
<If "%{HTTP_HOST} == 'domainthree'">
AuthUserFile /file/location/.htpasswd-domainthree
</If>
サブドメインを考慮しますか?