|
[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]
> :-) Thanks for the idea, but originally I didn't have one. I just dumped
> a bunch of pictures in a directory structure, made sure the access
> permissions were correct and tried my browser. The server said access to
> the directory was forbidden. I'm thinking there's something in httpd.conf
> that I'm missing.
You probably don't have the "indexes" option enabled for the directory
you're trying to browse. Try doing something like:
<Location /directory>
Options +Indexes
</Location>
See also: <http://httpd.apache.org/docs/mod/core.html#options>
-mct
|
|