AMPPS Virtualhost deosn't work

2019-05-11 05:05发布

  1. I update /etc/hosts and test the ping, the domain works;
  2. I use ampps admin tool to add domain, and verify the modification as the content below.
<VirtualHost 127.0.0.1:80>
<Directory "/www/companyname">
Options FollowSymLinks Indexes
AllowOverride All
Order deny,allow
allow from All
</Directory>
ServerName local.companyname.com
ServerAlias local.companyname.com
ScriptAlias /cgi-bin/ "/www/companyname/cgi-bin/"
DocumentRoot "/www/companyname"
ErrorLog "/Applications/AMPPS/apache/logs/local.companyname.com.err"
CustomLog "/Applications/AMPPS/apache/logs/local.companyname.com.log" combined
</VirtualHost>

then I restart the AMPPS, but it still doesn't work. It would connect to the default 127.0.0.1 page not my '/www/companyname' page.

3条回答
女痞
2楼-- · 2019-05-11 05:37

The problem is due the default setting of AMPPS, you should create 'extra' folder under the AMPPS/conf folder, it is not the one under AMPPS/apache/extra, should be AMPPS/conf/extra.

查看更多
冷血范
3楼-- · 2019-05-11 05:48

all you need is to add your virtual host to /etc/hosts file, eg:

127.0.0.1 example.com

unfortunately ampps doesn't make this

PS Don't forget to edit /etc/hosts as root user (eg sudo nano /etc/hosts)

查看更多
做自己的国王
4楼-- · 2019-05-11 05:56

I had to add an "extra" folder directly beneath the Ampps directory.

Ampps/extra/

After that everything started working as expected.

查看更多
登录 后发表回答