apache serverName不对应站点的名称文件夹

时间:2016-06-23 12:14:59

标签: apache apache2.4

所以,querstion: 我有以下文件结构

domains
  - learn
    - symfonyblog
      - web

我需要有主机名 - > symfonyblog,并保存我的文件结构。我该怎么做? 我试过这样的事情:

<VirtualHost *:80>

    DocumentRoot    "c:\openServer\domains\Learn\symfonyblog\web"
    ServerName      "Learn"
    <Directory "c:\openServer\domains\Learn\symfonyblog\web">
        Require all granted
    </Directory>

</VirtualHost>

但它不起作用。我找到的决定是

<VirtualHost *:80>

    DocumentRoot    "c:\openServer\domains\symfonyblog\web"
    ServerName      "symfonyblog"
    <Directory "c:\openServer\domains\symfonyblog\web">
        Require all granted
    </Directory>

</VirtualHost>

但是这个例子并不包含所需的文件结构。 请告诉我如何解决这个问题?

0 个答案:

没有答案