gpt4 book ai didi

macos - MAC OS X : MAMP Environment & Virtual Hosts

转载 作者:行者123 更新时间:2023-12-04 15:27:40 25 4
gpt4 key购买 nike

我不确定这里发生了什么,但我在 MAC OS X 上运行 MAMP 1.9。在我的 httpd.conf 文件中,DocumentRoot 设置为默认的 htdocs 路径。在 htdocs 文件夹中,我创建了许多“子站点”以将它们设置为虚拟主机......我可以到达指定的路径,但它们似乎都默认为我设置的第一个.

本质上,我配置的第一个 VirtualHost 是针对 site1.localhost.com。我已经配置了 site2.localhost.com 和 site3.localhost.com。但是,转到最后两个地址中的任何一个,似乎总是将我重定向到 site1.localhost.com。此外,仅访问 localhost.com:8888 也会拉起 site1.localhost.com。我不确定我在哪里做错了,但希望这里有人能够帮助我找出问题......哦,在对/etc/进行任何更改后,我已经重新启动了 apache 等主机或 httpd.conf 文件。

在我的 httpd.conf 文件中(相关部分,无论如何......):

#                                                                                                                                                                                                                                                                             
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
# MAMP DOCUMENT_ROOT !! Don't remove this line !!


DocumentRoot "/Applications/MAMP/htdocs"

#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#

#
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "/Applications/MAMP/htdocs">

<VirtualHost *>
DocumentRoot "/Applications/MAMP/htdocs/site1/"
ServerName site1.localhost.com
</VirtualHost>

<VirtualHost *>
DocumentRoot "/Applications/MAMP/htdocs/sub/site2/"
ServerName site2.localhost.com
</VirtualHost>

<VirtualHost *>
DocumentRoot "/Applications/MAMP/htdocs/sub/site3/"
ServerName site3.localhost.com
</VirtualHost>

在我的/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
127.0.0.1 site1.localhost.com
127.0.0.1 site2.localhost.com
127.0.0.1 site3.localhost.com
255.255.255.255 broadcasthost
::1 localhost
fe80::1%lo0 localhost

最佳答案

在您的 httpd.conf 文件中找到以下行并删除注释 (#):

 # NameVirtualHost * 

关于macos - MAC OS X : MAMP Environment & Virtual Hosts,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3363925/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com