具有自定义 URL/域的子域

具有自定义 URL/域的子域

我有一个名为“mysite”的子域名this.example.org/mysite需要解决我的网站在地址栏中。

这可以通过 mysite public_html 文件夹中的 .htaccess 来实现吗,还是我需要修改 apache httpd.conf 中的虚拟主机引用?

答案1

在站点配置中设置ServerAlias指令应该有效。

<VirtualHost *:80>
    ServerName foo.bar.int
    ServerAlias www.foo.int
    DocumentRoot /opt/foo
    <Directory /opt/foo>
    Order deny,allow
        Allow from all
        Require all granted
    </Directory>
</VirtualHost>

相关内容