
하위 도메인이 작동하도록 하려고 하는데 작동하지 않습니다. 모든 곳에 등록하고 실행하면 apachectl -S
하위 도메인이 표시되지만 기본 도메인만 표시됩니다. 이것은 000-default.conf 파일에 있는 코드입니다.
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
RewriteEngine on
RewriteCond %{SERVER_NAME} =prodigyhacking.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>
<VirtualHost *:80>
ServerName thefaqman.prodigyhacking.com
DocumentRoot /var/www/thefaqman.prodigyhacking.com
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
내가 뭐 잘못 했어요? 폴더에 있어야 할 파일이 거기에서 먹혀서 이전에는 작동하고 있었습니다. 모듈이 손상되기 시작하여 아파치를 다시 설치해야 할 때까지 작동했습니다. 그 후에는 내 하위 도메인 사용을 중단했습니다. Webmin이 포함된 OpenVZ VPS에서 Ubuntu 20.04를 실행하고 있습니다(도움이 되는 경우). 아파치는 최신 버전입니다.