Hiya,
OK, found plenty of posts searching this forum relating to the opposite of my problem, but couldn't get a reverse solution to work.
So I'm sure that this is just a simple thing I've missed or misunderstood.
I have a directory in my public_html directory that I plan to upload photos and movies to. At present there are 2 photos and a folder containing another 30 pics.
I want this folder and any folder under it to be viewable in a browser by anyone. The URL is
Now here is what I think is the important part of my httpd.conf file:
I have also placed an .htaccess file in the folder in question with nothing but "Options Indexes" written in it on the top line, with no white space.
Can anyone see what I'm missing from the above info?
Using Apache on a FreeBSD 4.8 server if it helps.
Thanks
Aaryn
OK, found plenty of posts searching this forum relating to the opposite of my problem, but couldn't get a reverse solution to work.
So I'm sure that this is just a simple thing I've missed or misunderstood.
I have a directory in my public_html directory that I plan to upload photos and movies to. At present there are 2 photos and a folder containing another 30 pics.
I want this folder and any folder under it to be viewable in a browser by anyone. The URL is
Now here is what I think is the important part of my httpd.conf file:
Code:
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /domains/*/*/*/public_html>
AllowOverride All
Options IncludesNoExec ExecCGI
</Directory>
<Directory /home/*/*/*/public_html>
AllowOverride All
Options IncludesNoExec ExecCGI
</Directory>
<Directory /domains/*/*/*/public_html/_vti_bin>
AddHandler cgi-script .exe
RLimitCPU 40 40
</Directory>
<Directory /fs/home/*/*/*/*/public_html>
AllowOverride All
Options IncludesNoExec ExecCGI
</Directory>
<IfModule mod_dir.c>
DirectoryIndex index.html index.htm index.shtml index.php index.php3 index.php4 index.php5 index.wml index.pl index.cgi
</IfModule>
AccessFileName .htaccess
<Files ~ "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</Files>
I have also placed an .htaccess file in the folder in question with nothing but "Options Indexes" written in it on the top line, with no white space.
Can anyone see what I'm missing from the above info?
Using Apache on a FreeBSD 4.8 server if it helps.
Thanks
Aaryn