サブドメインの設定には と がDebian 10
あります。メインドメインの設定:apache2
virtual hosts
<VirtualHost *:80>
ServerName system.com
ServerAlias system.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/system.com
<Directory /var/www/system.com>
Options -Indexes +FollowSymLinks
AllowOverride All
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
仮想ホストのサブドメイン構成の場合:
<VirtualHost *:80>
ServerName api.system.com
ServerAlias api.system.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/api.system.com
<Directory /var/www/api.system.com>
Options -Indexes +FollowSymLinks
AllowOverride All
# Order Allow,Deny
# Allow from All
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
そして今、ブラウザに system.com と入力すると、system.com ディレクトリの index.html が表示されます。api.system.com と入力すると、api.system.com フォルダの index.html が表示されます。
コマンドの出力: sudo apache2ctl -S
:
my@server088331:/etc/apache2/sites-available$ sudo apache2ctl -S
VirtualHost configuration:
*:80 is a NameVirtualHost
default server api.system.com (/etc/apache2/sites-enabled/api.system.conf:1)
port 80 namevhost api.system.com (/etc/apache2/sites-enabled/api.system.conf:1)
alias api.system.com
port 80 namevhost phpmyadmin.system.com (/etc/apache2/sites-enabled/phpmyadmin.conf:1)
alias phpmyadmin.system.com
port 80 namevhost system.com (/etc/apache2/sites-enabled/system.conf:1)
alias system.com
ServerRoot: "/etc/apache2"
Main DocumentRoot: "/var/www/html"
Main ErrorLog: "/var/log/apache2/error.log"
Mutex default: dir="/var/run/apache2/" mechanism=default
Mutex mpm-accept: using_defaults
Mutex watchdog-callback: using_defaults
PidFile: "/var/run/apache2/apache2.pid"
Define: DUMP_VHOSTS
Define: DUMP_RUN_CFG
User: name="www-data" id=33
Group: name="www-data" id=33
すべて問題ないように見えますが、サブドメインに問題があります。api.system.com と入力すると、api.system.com ディレクトリから index.html のコンテンツが取得されます。しかし、たとえば api55.system.com と入力すると、api.system.com からも index.html が取得されます。api41.system.com などでも同じ結果になります。これらのドメインは存在せず、これらのドメインの仮想ホストに構成が存在しないにもかかわらず、
特定のドメインのindex.htmlのみを取得できるように仮想ホストを構成する方法。2番目のドメインを追加すると、指定されたサブドメインの仮想ホストに割り当てられたフォルダーからのみファイルを取得する必要があります。
答え1
参照しているホストはすべて同じIPアドレスを持っていると想定しています。おそらくこれが役立つでしょう
RewriteEngine on
RewriteCond %{HTTP_HOST} !^api.system.com
RewriteRule ^ - [L,R=404]
自分のシステムではテストしていませんが、api.system.com 以外の URL を参照するときに 404 エラーが返されるはずです。これが求めているものですか?