我试图更改我的MAMP实例的ServerName属性,但它似乎没有响应我所做的任何事情。
我编辑了部分httpd.conf文件(/Applications/MAMP/conf/apache/httpd.conf):
#
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
#
#ServerName localhost:8888
ServerName slimproject.dev
在此之后我停止并启动了我的服务器。
然而它仍在回应http://localhost:8888 当我转到http://slimproject.dev时,它会告诉我"服务器未找到"
答案 0 :(得分:1)
如果您希望您的apache回复http://slimproject.dev/,则需要:
Listen
中的httpd.conf
指令来完成此操作(因此请将Listen 8888
替换为{{ 1}}。Listen 80
的主机实际上在您的本地计算机上。例如,您可以通过发出此命令slimproject.dev
根据httpd配置,可能需要执行其他步骤,但我们先执行此操作。
(上述两个步骤可能需要echo 127.0.0.1 slimproject.dev >> /etc/hosts
次访问权限)