我使用 postfix 为域设置了邮件服务器。对于 SSL 证书,我为该邮件服务器创建了一个虚拟主机。虚拟主机如下所示
<VirtualHost *:80>
ServerName mail.domainX.net
DocumentRoot /var/www/roundcube/
ErrorLog ${APACHE_LOG_DIR}/mail.domainX.net_error.log
CustomLog ${APACHE_LOG_DIR}/mail.domainX.net_access.log combined
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /var/www/roundcube/>
Options FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
RewriteEngine on
RewriteCond %{SERVER_NAME} =mail.domainX.net
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>
我的问题是,当我在浏览器中点击 mail.domain.com 时,它会打开使用 apache 虚拟主机在我的服务器上设置的另一个域的网页。我该如何从浏览器中阻止这种情况?
提前致谢。