root folder...
Moderator: General Moderators
root folder...
why is it that in the httpd.conf of my apache, the default serverroot is "C:/server/Apache2" but i can browse my page when i save inside the "C:/server/Apache2/htdocs"? and another...how can i change the root folder?i tried to modify this --> "C:/server/Apache2" to this --> c:/Inetpub/wwwroot ...but there was an error generated...
you also need to grant rights for the specific folder...
here's a sample
here's a sample
Code: Select all
<VirtualHost *:80>
ServerName test
DocumentRoot "e;F:/websites/test"e;
<Directory "e;F:/websites/test"e;>
AllowOverride All
Options All
</Directory>
</Virtualhost>