見つかりません 要求された 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

ドメイン名にアンダースコアを使用する可能性に関する説明は、_理論的な観点からはやや曖昧です。しかし、現代の慣習では、アンダースコアは推奨されていません。アンダースコアを含むドメイン名は、現代のシステムでは解決されず、許可されない可能性が高くなります。ホスト名についても同様であり、DocumentRoot場合によっては Apache でも同様です。

例えばこの投稿をご覧ください:

(ドメイン名) サブドメインにアンダースコア「_」を使用できますか?

この投稿は Apache に関連していますDocumentRoot:

不正なリクエスト ブラウザから送信されたリクエストをこのサーバーが理解できませんでした

また、TLDが.localすべての DNS リボルバーで完全にサポートされるわけではないため、その場合は代わりに TLD が.localdomain使用される可能性があります。

関連情報