更改MAMP的

时间:2016-06-09 09:26:27

标签: apache mamp slim

我试图更改我的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时,它会告诉我"服务器未找到"

1 个答案:

答案 0 :(得分:1)

如果您希望您的apache回复http://slimproject.dev/,则需要:

  1. 让您的apache侦听端口80(因为这是默认的http端口),您可以通过编辑Listen中的httpd.conf指令来完成此操作(因此请将Listen 8888替换为{{ 1}}。
  2. 您的浏览器需要知道名为Listen 80的主机实际上在您的本地计算机上。例如,您可以通过发出此命令slimproject.dev
  3. 来执行此操作

    根据httpd配置,可能需要执行其他步骤,但我们先执行此操作。

    (上述两个步骤可能需要echo 127.0.0.1 slimproject.dev >> /etc/hosts次访问权限)