0
嗯,我是Debian上的新成員,使用Debian OS在Digital Ocean上構建服務器。 我成功添加兩個域成一個液滴:域被重定向到同一滴中的另一個域
mysite.com
anothersite.com
創建新的目錄:
/home/user/www/mysite.com/public_html
並複製文件到public_html
內/etc/apache2/sites-available
配置文件是:
DocumentRoot /home/user/www/mysite.com/public_html
<Directory /home/user/www/mysite.com/public_html>
Options -Indexes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/myproject-error.log
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/myproject-access.log combined
當然,我啓用了該網站。
我還沒有編輯apache2.conf
文件,並沒有配置第二個域(anothersite.com
)。只需將第二個域添加到液滴即可。
當我進入該網站mysite.com
它的作品完美。但我想知道爲什麼第二域(anothersite.com
)被重定向到第一域(mysite.com
)?
順便說一句,我使用Apache 2.4