Я настроил поддомен с помощью файла httpd-vhosts.conf
в Xampp (Windows), поддомен доступен через Chrome
и Opera
на subdomain.localhost
, но Firefox
и Edge
не могут разрешитьадрес.Однако localhost
(основной домен) работает во всех браузерах.
#localhost
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot "C:/xampp/htdocs/"
ServerName localhost
ServerAlias www.localhost
ErrorLog "logs/localhost-error.log"
CustomLog "logs/localhost-access.log" common
</VirtualHost>
#subdomain
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot "C:/xampp/htdocs/subdomain"
ServerName subdomain.localhost
ServerAlias www.subdomain.localhost
ErrorLog "logs/localhost-error.log"
CustomLog "logs/localhost-access.log" common
</VirtualHost>