本地主机文件夹位于 Mac 或 Mac OS X 中的什么位置?

2022-08-30 08:29:05

我刚刚开始在我的Mac上开发PHP项目(使用PDT),并且想知道localhost位于何处?Mac OS X如何为网站提供服务,我在安装PDT期间没有更改任何设置。


答案 1

默认情况下,mac os x实际上有两个地方为网站提供服务:

  1. /Library/WebServer/Documents --> http://localhost
  2. ~/网站 --> http://localhost/~user/

答案 2

默认的 Apache 根文件夹 (localhost/) 是 /Library/WebServer/Documents

另外,请确保在 /etc/apache2/httpd.conf 中加载了 PHP5 模块

LoadModule php5_module libexec/apache2/libphp5.so

推荐