kali下apche配置多网站

设置文件地址为 :/etc/apache2/sites-available/default

添加:
<VirtualHost *:80>
      ServerName www.php.com #定义域名
      DocumentRoot /home/linux/www/php #定义主目录
</VirtualHost>
 
<VirtualHost *:80>
      ServerName www.web.com
      DocumentRoot /home/linux/www/web
</VirtualHost>
注:如不使用80端口,还需在apache.conf文件中添加对端口的监听,然后重启

你可能感兴趣的:(配置)