I have problem, with mod_xsendfile. When I send to Apache header with absolute path (like /home/foo/foo.txt ) everything works fine. But when I use relative links I get strange errors in Apache's logs.

X-Sendfile: ../test.txt
No such file or directory: xsendfile: cannot open file: test.txt


X-Sendfile: test.txt
No such file or directory: xsendfile: cannot open file: test.txt/test.txt


X-Sendfile: te%20st.txt
No such file or directory: xsendfile: cannot open file: te st.txt/te%20st.txt

This is my site configuration (I use mod_jk)

XSendFile on
XSendFilePath /home/user/binares/

<VirtualHost *:80>
    ServerAdmin webmaster@localhost
    ServerName serv1

    JkMount / ajp13
    JkMount /* ajp13

</VirtualHost>
link|improve this question
Are you sure is shouldn't be ./test.txt – Matthew Riches Jun 3 '11 at 13:34
feedback

1 Answer

I think you need to enable

XSendFileAllowAbove On

In order to send the files using relative links.

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.