用户名: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>