Не найдено Запрошенный URL не найден на этом сервере.

Не найдено Запрошенный URL не найден на этом сервере.

Вот как the-square.local.confвыглядят мои виртуальные хосты:

<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port t>
# 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 admin@the_square.com
ServerAlias the-square.local
ServerName the-square.local
DocumentRoot /var/www/html/the_square/public

<Directory /var/www/html/the_square/public>
        Options -Indexes +FollowSymLinks
        AllowOverride All
        Allow from all
</Directory>
# 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}/the-square.local-error.log
CustomLog ${APACHE_LOG_DIR}/the-square.local-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
</VirtualHost>

Я уже включил сайтsudo a2ensite the-square.local

И я также добавил /etc/hostsпод 127.0.0.6 the_square.local.

Я уже перезапустил Apache 2 systemctl reload apache2.

Я тоже так сделал sudo chmod -R 755и 777тоже в проекте.

У меня есть другие виртуальные хосты, работающие без проблем, но на этот раз я не могу найти проблему.

Спасибо!

  • Редактировать: Я изменил имя проекта на thesquareи также проделал это изменение во всех конфигурациях, но ошибка все та же...

решение1

Инструкции о возможности использования подчеркивания в доменном имени немного двусмысленны с точки зрения теории. Но это, безусловно, не приветствуется в современной практике. Доменное имя с подчеркиванием в нем, скорее всего, не будет разрешено и не будет разрешено современными системами. То же самое касается и имен хостов, а в некоторых случаях _даже Apache .DocumentRoot

Например, посмотрите этот пост:

Могут ли поддомены (доменное имя) содержать в себе подчеркивание «_»?

А этот пост связан с Apache DocumentRoot:

Неправильный запрос Ваш браузер отправил запрос, который этот сервер не смог понять.

Стоит также отметить, что TLD.localможет не полностью поддерживаться всеми DNS-револьверами, и в этом случае .localdomainвместо него может использоваться TLD.

Связанный контент