フォルダ階層
/html => maindomain.com
/html/_subdomain => subdomain.maindomain.com
/html/_subdomain/anotherdomain => anotherdomain.com and subdomain.maindomain.com/anotherdomain
/html/_subdomain/anotherdomain/admin => anotherdomain.com/admin and subdomain.maindomain.com/anotherdomain/admin
「anotherdomain.com/admin」を拒否し、このフォルダーだけに「subdomain.maindomain.com/anotherdomain/admin」を許可する .htaccess コードを探しています。私のコード
<Directory /html/subdomain/anotherdomain/admin>
Order Deny,Allow
Deny from all
Allow from subdomain.maindomain.com/anotherdomain/admin
</Directory>