【问题标题】:Add Virtual host in mac using mamp pro使用mamp pro在mac中添加虚拟主机
【发布时间】:2019-05-18 04:29:49
【问题描述】:

我需要使用 MAMP Pro 在 Mac 中添加虚拟主机。

第一步:(编辑 /etc/hosts 中的主机)像这样

##
# 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 
fe80::1%lo0 localhost
27.0.0.1 BSDs-iMac.local # added by Apache Friends XAMPP
127.0.0.1   symfony.local   # MAMP PRO - Do NOT remove this entry!
::1     symfony.local   # MAMP PRO - Do NOT remove this entry!

下一步:(打开 MAMP 的 vhosts 文件)并删除 #

/Applications/MAMP/conf/apache/extra/httpd-vhosts.conf

下一步:(编辑 httpd conf)

#
# Virtual Hosts
#
# 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.2/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 *:80>
    ServerAdmin webmaster@dummy-host.example.com
    DocumentRoot "/Applications/MAMP/Library/docs/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 "/Applications/MAMP/Library/docs/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 "/Desktop/avinar/my-project/public"
    ServerName symfony.local
</VirtualHost>

最后一步将虚拟主机添加到 mamp pro 中,如下所示:

现在当我检查网址时:symfony.local 我看到了这个错误:

> 禁止的 > 您无权访问此服务器上的 /。

当我检查这个网址时:symfony.local/my-projet/public 服务器工作,我看到了页面。

如何解决这个问题?!

【问题讨论】:

    标签: macos mamp virtualhost mamp-pro


    【解决方案1】:

    该虚拟主机可能缺少Directory 指令:

    <Directory "/Desktop/avinar/my-project/public">
        Options -Indexes +MultiViews +FollowSymLinks
        AllowOverride all
        Order allow,deny
        Allow from all
        Require all granted
    </Directory>
    

    如果不起作用,则递归地将apache(或者可能调用用户)设置为/Desktop/avinar/my-project 的所有者(或所有者组)。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2011-06-27
      • 2012-09-03
      • 2015-11-20
      • 2012-12-28
      • 1970-01-01
      • 2014-09-13
      • 2015-07-13
      • 2018-11-18
      相关资源
      最近更新 更多