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

以后

只要配置域名即可

猜你喜欢

转载自www.cnblogs.com/Nora-F/p/9488231.html
今日推荐