apache 同一虚拟目录绑定多个不同域名实例方法

作者:袖梨 2022-06-25

apache 同一虚拟目录绑定多个不同域名实例方法

要想多域名绑定同一目录的实现就要用到serveralias方法,下面我们以www.111com.net为实例,

namevirtualhost *:80
   
    servername web-demo
    serveralias www.111com.net 111com.net
    documentroot "x:/www/htdocs"
   

   
    options followsymlinks includesnoexec indexes
    directoryindex index.htm index.html index.php教程
    allowoverride none
    order deny,allow
    allow from all
   

注:域名之间以空格分开,要不就会绑定失败哦,还有重启你的apache服务器就ko了。

相关文章

精彩推荐