使用Mamp Pro在Mac中添加虚拟主机

时间:2019-05-18 04:29:49

标签: macos mamp virtualhost mamp-pro

我需要使用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中,如下所示:

enter image description here

现在,当我检查网址时:symfony.local,我看到此错误:

  

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

当我检查以下网址时:symfony.local/my-projet/public服务器工作,并且看到页面。

如何解决此问题?!

1 个答案:

答案 0 :(得分:0)

该病毒宿主可能缺少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的所有者(或所有者组)。