Forum Moderators: phranque
i want to make one "pub" folder on my site viewable, since i travel a lot and would like to put certain files in there for easy access.
i'm assuming i need to create a custom .htaccess file for that directory, so i dont get the "forbidden" message, but have no idea how to do this
any help would be appreciated :)
Raynor
i'm guessing it's disabled somewhere?
heres the .htaccess in my root
# -FrontPage-
IndexIgnore .htaccess */.?* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
would that stop me?
No. Instructions in a .htaccess-file should override instructions in a .htaccess in a higher directory. You did put the 'options +indexes' in a .htaccess in the directory you want to see the listing of?
Here's the official documentation:
[httpd.apache.org ] and
[httpd.apache.org ]