美文网首页
虚拟主机Vhsot配置

虚拟主机Vhsot配置

作者: 路过的人儿 | 来源:发表于2017-12-09 20:05 被阅读0次

    在 /etc/httpd/conf/httpd.conf中该添加两行

    NameVirtualHost *:80
    Include "vhost/*.conf"
    

    /etc/httpd中创建vhost文件夹以及·xxx.conf文件

    mkdir vhsot
    vim vhost/vhost.conf
    

    在vhost.conf中添加虚拟主机配置信息

    <VirtualHost *:80>
        DocumentRoot "/home/www/www.a-fu.sie"
        ServerName www.a-fu.site
        ServerAlias a-fu.site
      <Directory "/home/www/www.a-fu.site">
          Options FollowSymLinks ExecCGI
          AllowOverride All
          Order allow,deny
          Allow from all
          Require all granted
      </Directory>
    </VirtualHost>
    <VirtualHost *:80>
        DocumentRoot "/home/www/www"
        ServerName qjh.longqine.com
        ServerAlias longqine.com
      <Directory "/home/www/www">
          Options FollowSymLinks ExecCGI
          AllowOverride All
          Order allow,deny
          Allow from all
          Require all granted
      </Directory>
    </VirtualHost>
    <VirtualHost *:80>
        DocumentRoot "/home/www/sisuo"
        ServerName t.taotaohub.com
      <Directory "/home/www/sisuo">
          Options FollowSymLinks ExecCGI
          AllowOverride All
          Order allow,deny
    "vhost.conf" 93L, 2361C                                                             1,1           Top
    

    相关文章

      网友评论

          本文标题:虚拟主机Vhsot配置

          本文链接:https://www.haomeiwen.com/subject/myypixtx.html