Changing the root directory in WAMP

前端 未结 4 1444
说谎
说谎 2020-12-30 15:58

I\'m looking to change the root directory to point the directory to the following location:

C:\\Documents and Settings\\User\\My Documents[documents]\\wamp

I

4条回答
  •  暖寄归人
    2020-12-30 16:29

    I was getting same forbidden error (In windows machine for wamp), after lot of r & d I found that there is need to change default virtual host in httpd-vhosts.conf file which is present in:

    C:\wamp\bin\apache\Apache2.2.17\conf\extra  
    

    (change directory c:/wamp/www to what you want)

    From :

    ServerAdmin webmaster@localhost  
    DocumentRoot “c:/wamp/www”  
    ServerName localhost  
    ErrorLog “logs/localhost-error.log”  
    CustomLog “logs/localhost-access.log” common  
    

    To:

    ServerAdmin webmaster@localhost
    DocumentRoot “E:/wamp/www”
    ServerName localhost
    ErrorLog “logs/localhost-error.log”
    CustomLog “logs/localhost-access.log” common
    

提交回复
热议问题