On my site we have thousands of documents that we want to serve using x-sendfile. Unfortunately, many of them have funky utf-8 characters in their titles, and, what with HTTP not supporting utf-8, x-sendfile doesn't exactly either.

I can make x-sendfile work properly by changing the names of my files to be URL encoded, and by updating my database to mirror those values, but that sucks since I have so many files, and it feels dumb to have them all named with various URL encodings when my OS (and most everything else) supports utf-8.

Is there a way I can use x-sendfile without changing my file names and database?

link|improve this question

2  
"HTTP not supporting utf-8" [citation needed] – Ignacio Vazquez-Abrams Feb 15 at 5:19
Hrm, looks like you may be right about that, but django does struggle with this, as does x-sendfile: ben.timby.com/?p=149 – mlissner Feb 15 at 5:41
feedback

1 Answer

up vote 0 down vote accepted

If you use the latest version of xsendfile (not the one currently on the website, but rather the one from github), this works automatically!

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.