Disable directory browsing i apache
Jeg har søgt på eksperten efter løsningen og har fundet dette svar:Ret "Options Indexes FollowSymLinks MultiViews"
til
"Options None"
i httpd.conf
Nu er der bare den lille ting at det står 2 steder
--------------------------------------
#
# This may also be "None", "All", or any combination of "Indexes",
# "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
Options Indexes FollowSymLinks MultiViews
--------------------------------------
#
# Note that if you include a trailing / on fakename then the server will
# require it to be present in the URL. So "/icons" isn't aliased in this
# example, only "/icons/". If the fakename is slash-terminated, then the
# realname must also be slash terminated, and if the fakename omits the
# trailing slash, the realname must also omit it.
#
Alias /icons/ "C:/Apache/Apache/icons/"
<Directory "C:/Apache/Apache/icons">
Options Indexes MultiViews
--------------------------------------
Hvilken skal rettes, eller er det begge
