Virtualhost

具有自定義 URL/域的子域

  • February 9, 2016

我在this.example.org/mysite有一個名為“mysite”的子域,需要在地址欄中解析為mysite.org

這可以通過 mysite public_html 文件夾中的 .htaccess 來完成,還是我需要修改 apache httpd.conf 中的虛擬主機引用?

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>

引用自:https://serverfault.com/questions/755056