ユーザー名:foo@foobar.com
では、ユーザーが自分の名前で始まるファイルにアクセスできるようにする最善の方法は何でしょうか? (例: foo_bar.pdf、foo.txt、footree.log)
# ... other authentication stuff here ...
RewriteCond %{REMOTE_USER} ^(.*?)@
<FilesMatch "%1.*?\..*">
require valid-user
</FilesMatch>
ユーザー名:foo@foobar.com
では、ユーザーが自分の名前で始まるファイルにアクセスできるようにする最善の方法は何でしょうか? (例: foo_bar.pdf、foo.txt、footree.log)
# ... other authentication stuff here ...
RewriteCond %{REMOTE_USER} ^(.*?)@
<FilesMatch "%1.*?\..*">
require valid-user
</FilesMatch>