Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations sizbut on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

changing root folder for apache

Status
Not open for further replies.

atsea

Technical User
Feb 27, 2005
51
JP
Currently the root folder is set as C:/Program Files/Apache Group/Apache2/htdocs

I would like to change it D:/My Webpages

Could anyone refer me to all the different places that need to be altered in the httpd.conf file to accomplish this?

In addition, Im having trouble accessing with firefox...everything works fine when using IE, but Id rather not use it. Has anyone else experienced this? is there a way to get around this?

Thanks.
 
DocumentRoot "D:/My Webpages"
<Directory "D:/My Webpages">
Options Indexes FollowSymLinks
AllowOverride all
Order allow,deny
Allow from all
</Directory>
 
thats two things

DocumentRoot "D:/My Webpages"

and

<Directory "D:/My Webpages">
Options Indexes FollowSymLinks
AllowOverride all
Order allow,deny
Allow from all
</Directory>

sorry
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top