Contoweb
Contoweb

Reputation: 47

mod_rewrite virtual directory to download

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

Answers (1)

umka
umka

Reputation: 1655

Have you tried this one?

RewriteEngine on
RewriteRule ^vfolder$ /storage/file.zip [L]

Upvotes: 1

Related Questions