Reputation: 47
Is it possible to rewrite a virtual directory to a file-download? I tried many solutions, but nothing works for me...
Goal:
<domain>/vfolder
to
<domain>/storage/file.zip
Thanks for your help!
Regards,
Upvotes: 1
Views: 76
Reputation: 1655
Have you tried this one?
RewriteEngine on
RewriteRule ^vfolder$ /storage/file.zip [L]
Upvotes: 1