How to change the location of `web root` folder of EasyPHP?

后端 未结 4 870
梦毁少年i
梦毁少年i 2021-02-20 06:19

Currently on my Windows 7 machine, it is C:\\Program Files (x86)\\EasyPHP-5.3.8.1\\www

I want to point it into another location on drive D, says D:\\c

4条回答
  •  暗喜
    暗喜 (楼主)
    2021-02-20 07:06

    Thanks to @daviddlh 's answer, I have the simple solution for my question.

    Open apache configuration file httpd.conf

    Replace the default value ${path}/www by the path of our choice, says D:\code

    Where does it come from? Look for DocumentRoot in apache config file (i.e. httpd.conf), we will see the below line which link us to ${path}/www

    DocumentRoot "${path}/www"
    

提交回复
热议问题