I am having trouble loading Apache HTTP Server on my Windows7
computer.
I want to change the location of htdocs to a folder in another file
structure (c:/users/peter/documents/htdocs) for ease of access to my
files and then I want to run the php5apache2_2.dll file handler.
The Appropriate lines from my HTTPD.Conf file to set the htdocs
document root are below. They don't appear in this direct sequence in
my conf file.
#DocumentRoot "C:/Program Files (x86)/Apache Software Foundation/
Apache2.2/htdocs"
DocumentRoot "C:/Users/Peter/Documents/htdocs"
...
<Directory "C:/Users/Peter/Documents/htdocs">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI
MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options
All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please
see
#
http://httpd.apache.org/docs/2.2/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks
#
# AllowOverride controls what directives may be placed
in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride None
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
</Directory>
### End of CONF File
I hope someone can help, this is driving me absolutely nutso...