はちゅにっき

こっちのブログはまったり更新

ドメインに応じて表示されるページを変更する

アクセスされるドメインで表示するページを変えたい!
とのご命令をいただきました。

とゆーワケで、Apacheの設定を以下のようにしました。*1

NameVirtualHost *

<VirtualHost *>
    ServerAdmin webmaster@lily
    DocumentRoot /home/yuki/public_html
    ServerName lily.net
    ErrorLog /var/log/httpd-error.log
    CustomLog /var/log/httpd-access combined
</VirtualHost>

<VirtualHost *>
    ServerAdmin webmaster@hydrangea
    DocumentRoot /home/miki/public_html
    ServerName hydrangea.net
    ErrorLog /var/log/httpd-error-hydrangea.log
    CustomLog /var/log/httpd-access-hydrangea combined
</VirtualHost>

こーすると
www.lily.net でアクセスすると /home/yuki/public_html が
www.hydrangea.net でアクセスすると /home/miki/public_html が
それぞれ表示されるようになりました。
お仕事おわり。

*1:あくまでも例ですよ