Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a public/ directory that I have set up as containing static files in express:

app.use(express.static(__dirname + '/public'));

It has an images directory in it

/public/images

And that has a deep subtree of various images. If I put in the full path to the image, it loads with no problem.

http://mysite.com/images/tiles/grass.png

When I just go to a url such as

http://mysite.com/images/tiles/

It just gives me the error that it gives when it tries to find a non-static path, but the path doesn't exist.

How can I make it so all directories in my static path show something similar to the way Apache shows the navigable directory structure?

share|improve this question

1 Answer

up vote 10 down vote accepted

Cause what you're requesting when putting

http://mysite.com/images/tiles/

is a direcotyr listing request, and it seems that static middleware just server files not directories. You hav to use

app.use(express.directory(your_path));
app.use(express.static(your_path));

This will let you request that URIS you're talking about

share|improve this answer
Worked great, thanks! This isn't in the current express guide. Also required update from 2.4.4 to 2.4.7 (for anyone else who has this problem) – RobKohr Oct 19 '11 at 23:59
1  
If you want it to use index.html files when given a path, put express.static before express.directory. Static will load the index file so directory browsing won't happen when the file is there. – RobKohr Oct 20 '11 at 16:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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