指向同一IP上的2个子域,但我希望它们都在不同目录中工作

时间:2018-10-16 09:25:08

标签: php server apache2 virtualhost

我有2个子域都指向同一ip和服务器,并且当前以root身份指向/ var / www / html,但是我希望其中一个指向/ var / www / html / anothersub之类的子目录:< / p>

所以我在sites-available文件夹中创建了一个新文件:anothersub.mydomain.com.conf

在上面添加了上面的代码:

        ServerName anothersub.mydomain.com         ServerAdmin webmaster @ localhost

    DocumentRoot /var/www/html/anothersub
    <Directory /var/www/html/anothersub>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
        Order allow,deny
        allow from all
    </Directory>

    ErrorLog ${APACHE_LOG_DIR}/red-error.log

    LogLevel warn

    CustomLog ${APACHE_LOG_DIR}/red-access.log combined

</VirtualHost>

并运行命令:sudo a2dissite anothersub.mydomain.com.conf sudo a2ensite anothersub.mydomain.com.conf sudo服务apache2重新启动

但是我的两个域仍然指向相同的根目录

0 个答案:

没有答案