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

后端 未结 4 867
梦毁少年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

    Actually, if your apache is using Virtual Hosts, you just have to change the path under the correct "Virtual Host". In my case, it was:

    # Virtual Hosts
    ## Virtualhost localweb
    
    #   DocumentRoot "${path}/data/localweb"
        DocumentRoot "D:\Code"
        ServerName 127.0.0.1
    #   
        
            Options FollowSymLinks Indexes
            AllowOverride All
            Order deny,allow
            Allow from 127.0.0.1
            Deny from all
            Require all granted
        
    
    

提交回复
热议问题