简体   繁体   English

虚拟主机打开本地主机

[英]virtual host opening localhost

I am trying to setup a laravel project. 我正在尝试设置一个laravel项目。 I created the virtual host. 我创建了虚拟主机。 But it takes to my localhost. 但这需要我的本地主机。 I have googled it but couldn't find any solutions. 我用谷歌搜索,但找不到任何解决方案。

this is how my vhost.conf looks like 这就是我的vhost.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.

#
# 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 "/usr/docs/dummy-host.example.com"
    ServerName dummy-host.example.com
    ServerAlias www.dummy-host.example.com
    ErrorLog "/private/var/log/apache2/dummy-host.example.com-error_log"
    CustomLog "/private/var/log/apache2/dummy-host.example.com-access_log" common
</VirtualHost>

<VirtualHost *:80>
    ServerAdmin webmaster@dummy-host2.example.com
    DocumentRoot "/usr/docs/dummy-host2.example.com"
    ServerName dummy-host2.example.com
    ErrorLog "/private/var/log/apache2/dummy-host2.example.com-error_log"
    CustomLog "/private/var/log/apache2/dummy-host2.example.com-access_log" common
</VirtualHost>


<VirtualHost *:80>
    ServerName test.dev
    ServerAlias www.test.dev
    DocumentRoot "/Users/Aasim/Sites/test"
    ErrorLog "/private/var/log/apache2/apple.com-error_log"
    CustomLog "/private/var/log/apache2/apple.com-access_log" common
    ServerAdmin web@coolestguidesontheplanet.com
</VirtualHost>

and this is what i added in host file 这就是我在主机文件中添加的内容

##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting.  Do not change this entry.
##
127.0.0.1   localhost
255.255.255.255 broadcasthost
::1             localhost
127.0.0.1 test.dev www.test.dev

Also i have edit the /etc/apache2/httpd.conf and /etc/apache2/extra/httpd-vhosts.conf files and uncommented these lines 我也编辑了/etc/apache2/httpd.conf和/etc/apache2/extra/httpd-vhosts.conf文件,并取消了这些行的注释

LoadModule vhost_alias_module libexec/apache2/mod_vhost_alias.so
Include /private/etc/apache2/extra/httpd-vhosts.conf

and restarted the appache as well 并重新开始了

this is what my final result is 这就是我的最终结果

在此处输入图片说明

I am using mac el capitan 我正在使用Mac El Capitan

Change this line 更改此行

  DocumentRoot "/Users/Aasim/Sites/test"
to
 DocumentRoot "/Users/Aasim/Sites/test/public"

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM