phpstorm配置Apache服务器
第一次:
C:\xampp\apache\conf\httpd.conf 中
LoadModule vhost_alias_module
modules/mod_vhost_alias.so
取消注释
DocumentRoot "D:/project"
<Directory "D:/project">
设置apache根目录
Include conf/extra/httpd-vhosts.conf 取消注释
C:\xampp\apache\conf\extra\httpd-vhosts.conf 中
<VirtualHost wx.rating.com:80>
DocumentRoot "D:/project/we_rating"
ServerName wx.rating.com
</VirtualHost>
C:\Windows\System32\drivers\etc\hosts 中的hosts文件
配置虚拟域名.
127.0.0.1 wx.wine.com
127.0.0.1 wx.we.com
127.0.0.1 wx.rating.com
在phpstorm中配置servers
Host为刚刚域名
start URL中一定加上http://
以后
只要配置域名和修改httpd-vhosts.conf文件即可