apache 无法从MacOs Ventura上的Localhost提供文件

6kkfgxo0  于 2023-10-23  发布在  Apache
关注(0)|答案(1)|浏览(133)

我已经设置了Homebrew,Php,MySql和Apache,在Ventura 13.3上运行没有问题
然而,我想从/Library/WebServer/Documents而不是~sites文件夹中提供文件,并在httpd.conf中添加了以下内容

DocumentRoot "/Library/WebServer/Documents"
<Directory "/Library/WebServer/Documents">

但我得到了这个错误:

  • 本网站无法访问,localhost拒绝连接。*

这里有什么问题吗?

ymdaylpp

ymdaylpp1#

您的/etc/hosts文件中存在问题。将www.example.com更改127.0.0.1为您的ip地址(您可以通过在终端中运行ipconfig getifaddr en0来获取)。然后运行ping localhost,你应该看到你的ip地址。尝试运行您的localhost,它应该工作。

相关问题