web-dev-qa-db-ja.com

XamppでLaravelの仮想ホストを有効にする方法は?

XAMPPをWindows 7 Proで実行しています。 「dev.app」をドメインとして使用すると、laravelインストールのパブリックフォルダーに直接アクセスできるように、仮想ホストをセットアップしようとしています。

LaravelはF:/xampp/htdocs/dev/publicにあります

httpd-vhosts.confにあるF:\xamp\Apache\conf\extra\https-vhosts.confファイルを開きました

すべてをこれで置き換えました

# Virtual Hosts
#
# Required modules: mod_log_config

# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at 
# <URL:http://httpd.Apache.org/docs/2.4/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual Host
# configuration.

#
# Use name-based virtual hosting.
#

NameVirtualHost *:80

#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for all requests that do not
# match a ##ServerName or ##ServerAlias in any <VirtualHost> block.
#

<VirtualHost localhost>
    DocumentRoot "F:/xampp/htdocs/"
    ServerAdmin admin@localhost

    <Directory "F:/xampp/htdocs/">
        Options Indexes FollowSymLinks
        AllowOverride all
    </Directory>

</VirtualHost>

# Development
<VirtualHost dev.app>
    DocumentRoot "F:/xampp/htdocs/dev/public"
    ServerAdmin admin@localhost

    <Directory "F:/xampp/htdocs/dev/public">
       AllowOverride All
       Order Allow,Deny
       Allow from all
       Require all granted
    </Directory>
</VirtualHost>

次に、C:\Windows\System32\drivers\etcにあるhostsファイルを開いて、localhost行を次のように変更しました

127.0.0.1       localhost      dev.app
127.0.0.1       127.0.0.1

ただし、ブラウザでdev.appに移動すると、このエラーが発生します

接続することができません

Firefoxはapp.devでサーバ​​ーへの接続を確立できません。

The site could be temporarily unavailable or too busy. Try again in a few moments.
If you are unable to load any pages, check your computer's network connection.
If your computer or network is protected by a firewall or proxy, make sure that Firefox is permitted to access the Web.

ここで何が欠けていますか?何を間違えたのですか?

注: vhostsファイルを変更した後、Apacheを再起動しました。また、laravel)のconfigフォルダーにあるapp.phpファイルを更新して、URLにhttp://dev.app値を含めました。

[〜#〜] updated [〜#〜] http:// ....を追加した後、サイトは解決されますが、画像が表示されません。

8
Junior

Hostsファイルは、IPV4およびIPV6ネットワークで見つかるように、次のようになります。

127.0.0.1  localhost dev.app
::1        localhost dev.app

Apache 2.4.xを使用している場合、httpd-vhosts.confのこの行

NameVirtualHost *:80

apache 2.4では、もはや必要も許可もされていません。

Vhostファイルは次のようになります。Apache2.2と2.4の構文を混在させています。mod_access_compatを有効にしている限りどちらでも許可されていますが、混在させないでください。2.4の構文の方が適しています。また、他のいくつかの便利な小片を見逃しました

<VirtualHost *:80>
    DocumentRoot "F:/xampp/htdocs/"
    ServerAdmin admin@localhost
    ServerName localhost

    <Directory "F:/xampp/htdocs/">
       Options Indexes FollowSymLinks
       AllowOverride all
       Require local
    </Directory>
</VirtualHost>

<VirtualHost *:80>
    DocumentRoot "F:/xampp/htdocs/dev/public"
    ServerAdmin admin@localhost
    ServerName dev.app
    ServerAlias www.dev.app

    <Directory "F:/xampp/htdocs/dev/public">
       AllowOverride All
       Options Indexes FollowSymLinks

       Require local
       # if you want access from other pc's on your local network
       #Require ip 192.168.1
       # Only if you want the world to see your site
       #Require all granted
    </Directory>
</VirtualHost>
11
RiggsFolly

XAMPPの代わりにlaragonサーバーを使用します。 Laragonの便利な機能の1つは、自動仮想ホストです。ララゴンを使ったプリティURLの詳細 こちら

0
Murad