【问题标题】:laravel app won't appear on localhostlaravel 应用程序不会出现在本地主机上
【发布时间】:2019-01-03 16:31:31
【问题描述】:

我的 xampp、locahost 和 laravel 项目有问题。当我在我的 C:/xampp/htdocs 文件夹中创建一个新的 laravel 项目:composer create-project --prefer-dist laravel/laravel fmvcei 时,当我输入 localhost/fmvcei/public 时,什么也没有出现。我从另一个堆栈溢出问题中撤出,它建议删除 NameVirtualHost *:80。当我尝试将我的主机文件配置为能够在浏览器中键入 fmvcei.test 时,仍然没有。我每次都重新启动xampp。这是我的 httpd/vhost 和主机文件:

# 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.
#

#
# 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 *:80>
    ##ServerAdmin webmaster@dummy-host.example.com
    ##DocumentRoot "C:/xampp/htdocs/dummy-host.example.com"
    ##ServerName dummy-host.example.com
    ##ServerAlias www.dummy-host.example.com
    ##ErrorLog "logs/dummy-host.example.com-error.log"
    ##CustomLog "logs/dummy-host.example.com-access.log" common
##</VirtualHost>

##<VirtualHost *:80>
    ##ServerAdmin webmaster@dummy-host2.example.com
    ##DocumentRoot "C:/xampp/htdocs/dummy-host2.example.com"
    ##ServerName dummy-host2.example.com
    ##ErrorLog "logs/dummy-host2.example.com-error.log"
    ##CustomLog "logs/dummy-host2.example.com-access.log" common
##</VirtualHost>


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

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



<VirtualHost *:80>

        DocumentRoot "C:/xampp/htdocs/fmvcei/public"
    ServerAdmin admin@localhost
    ServerName fmvcei.test
    ServerAlias www.fmvcei.test

<Directory "C:/xampp/htdocs/fmvcei/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>

主机文件:

# Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
#      102.54.94.97     rhino.acme.com          # source server
#       38.25.63.10     x.acme.com              # x client host

# localhost name resolution is handled within DNS itself.
#   127.0.0.1       localhost
#   ::1             localhost

127.0.0.1       localhost
127.0.0.1   tbhtoat.app
127.0.0.1   fmvcei.test

【问题讨论】:

标签: laravel localhost


【解决方案1】:

首先,确保 Apache 和 MySQL 都在运行。

移动到根项目目录,fmvcei 在你的情况下,然后运行这个命令php artisan serve。您可以通过127.0.0.1:8000

浏览

注意。如果您还没有安装 Composer,则需要安装。

【讨论】:

  • 我错误地运行了一个 php artisan serve 并尝试通过 xampp 进行配置,所以我删除了新项目并重新安装了它,并对我的 apache/extra 和 windows/system32/driver 文件进行了必要的更改,并且能够这样运行它:fmvcon.test:3200
猜你喜欢
  • 2019-07-17
  • 2020-06-25
  • 2019-06-29
  • 2022-12-11
  • 2015-08-22
  • 2019-01-12
  • 2023-04-11
  • 1970-01-01
  • 2018-03-11
相关资源
最近更新 更多