Làm cách nào tôi có thể định cấu hình apache để nó từ chối các kết nối trực tiếp đến địa chỉ IP ( http://xxx.xxx.xxx.xxx ) thay vì tên vhost http://example.com ?
Cấu hình Virtualhost của tôi:
ServerName example.com
<VirtualHost *:80>
ServerName example.com
DocumentRoot /var/www/
<Directory /var/www/>
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>