サーバーのIPアドレスでアクセスする訪問者をブロックする


回答:


5

あなたがしたいことは名前ベースの仮想ホスティングなので、これらの線に沿った何かがあなたを始めるかもしれないと私は信じています:

NameVirtualHost *:80
<VirtualHost *:80>
  <Location />
  Order deny,allow
  Deny from all
  </Location>
  # other configuration for default host...
</VirtualHost>

<VirtualHost *:80>
  # This is the one you would like visible
  ServerName test.local
  <Location />
  Order deny,allow
  Allow from all
  </Location>
</VirtualHost>

(私は少し急いでいるので、そこにタイプミスがあるかもしれません、申し訳ありません。)


4
明示的な_default_VirtualHostエントリを追加することをお勧めします。
gertvdijk
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.