I have a directory of text files that I'm serving out with apache 2. Normally when I (or any user) access the files they see them in their browser. I want to 'force'* the web browser to pop up a 'Save as' dialog box. I know this is possible to do with the Content-Disposition headers (more info).

Is there some way to turn that on for each file?

Ideally I'd like something like this:

<Directory textfiles>
   AutoAddContentDispositionHeaders On
</Directory>

And then apache would set the correct content disposition header, including using the same filename.

Something like this might be possible with the apache Header directive.

Bonus points if it's included by standing in apache in debian.

I could do a simple PHP wrapper script that takes in a filename argument, makes the call to header(...) and then prints the file, but then i have to validdate input etc. that's work I'm trying to avoid.


* I know you can't actually force things when it comes to the web

link|improve this question

79% accept rate
feedback

3 Answers

up vote 2 down vote accepted

I have discovered that this does what I want:

<Location /textfiles>
    SetEnvIf Request_URI "^.*/([^/]*)$" FILENAME=$1
    Header set "Content-disposition" "attachment; filename=%{FILENAME}e"
    UnsetEnv FILENAME
</Location>
link|improve this answer
feedback

mod_headers should be what you are looking for:

<IfModule mod_headers.c> 
  <Location ~ ".*/textfiles/.*"> 
    Header set Content-Disposition attachment
  </Location>
</IfModule>
link|improve this answer
A good start, but i also want the filename in there so that it pops up the (same) filename. However I have found a similar solution – Rory Jan 12 '10 at 16:52
feedback

I have tried the above for a testfiles directory, where I want user to be prompted to download all file types, html, jpg, pdf, doc, exe .... etc

<Location /testfiles>
    SetEnvIf Request_URI "^.*/([^/]*)$" FILENAME=$1
    Header set "Content-disposition" "attachment; filename=%{FILENAME}e"
    UnsetEnv FILENAME
</Location>

Which works with .doc and .pdf files, but .html and .jpg files in this directory it is not working the browser is displaying them

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.