Using Apache. How can I allow access to /storage/ but deny access to /.storage/ when /storage/ is an alias for /.storage/subdomain/?
# Define alias based on subdomain
RewriteCond %{HTTP_HOST} ^([^.]+)$
RewriteRule ^storage/(.*)$ ".storage/%1/$1" [QSA,L]
# Forbid access to
RewriteCond %{REQUEST_URI} ^/\.storage/
RewriteRule ^ - [F,L]