Laravel配置

时间:2018-05-02 02:10:09

标签: laravel configuration virtualhost web-development-server

我一直在尝试配置Laravel,但它似乎有某种错误:“找不到IP地址。”

这是我在httpd-vhost.conf中的配置 Configuration on httpd-vhost

这就是我放在主人身上的东西 enter image description here

我尝试在apache中通过httpd.exe -t重新启动并检查我的语法,但似乎没问题

1 个答案:

答案 0 :(得分:0)

你可以试试这个。

httpd-vhost.conf文件中写下此内容,如果您想要虚拟主持人审核者,请尝试此操作,

<VirtualHost *:80>
  ServerName reviewer.test
  ServerAlias reviewer.test
  DocumentRoot "C:/xampp/htdocs/reviewer/public"
  DirectoryIndex index.php
  <Directory "C:/xampp/htdocs/reviewer/public">
    Options +Indexes +Includes +FollowSymLinks +MultiViews
    AllowOverride All
    Require local
  </Directory>
</VirtualHost>

在您的主机文件中写下此内容,

127.0.0.1       reviewer.test
  

然后重新启动您的所有xampp服务器服务。

您的文件存在问题

您尚未删除评论(#此符号表示该评论。)

这是您的文件配置。

# localhost name resolution is handled within DNS itself.
#   127.0.0.1       localhost
#   127.0.0.1       reviewer.dev

您必须删除#此符号,并将dev替换为test。从this link.

获取更多知识
# localhost name resolution is handled within DNS itself.
#   127.0.0.1       localhost
    127.0.0.1       reviewer.test

我希望这些东西可以帮助你。