2つのWebサイトと2つのドメインを持つ単一のサーバーをご利用の場合は、仮想ホスト構成ファイルに2つのVirtualHostブロックを作成するだけです。どちらもお互いに似ているかもしれませんが、DocumentRoot
とServerName
のエントリを変更する必要があります。
ファイルには、次のようになります。
<VirtualHost *:80>
DocumentRoot "/var/www/Website1"
ServerName Website1.com
<Directory "/var/www/Website1/public">
Options Indexes FollowSymLinks MultiViews Includes ExecCGI
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
</VirtualHost>
<VirtualHost *:80>
DocumentRoot "/var/www/Website2"
ServerName Website2.com
<Directory "/var/www/Website2/public">
Options Indexes FollowSymLinks MultiViews Includes ExecCGI
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
</VirtualHost>
あなたも、このファイル内のhttps接続を処理できることを確認するために。
さらに、適切なルートフォルダにある.htaccess
ファイルで接続をリダイレクトする良い方法があります。