所以我想在我的macbook上本地开发一个php网站。我使用 apache 作为我的网络服务器,我安装了 php 和 mysql,我可以使用我的站点文件夹中的 php 索引文件,但我想将我的所有开发转移到不同的地方。
我一直在尝试将 apache 配置为在不同的端口上运行,到目前为止,我已经对我的 /etc/apache2/extras/httpd-vhost.conf 进行了这些更改
<VirtualHost *:2727>
ServerAdmin foobar@gmail.com
DocumentRoot "/Users/brianWheeler/Foobar"
ServerName local.foobar.com
</VirtualHost>
我已经编辑了我的 /etc/apache2/httpd.conf 说
listen 127.0.0.1:2727 http
我已经启动了 apache,但是当我去的时候,127.0.0.1:2727
我得到了 google chrome page not found 类型的东西。
我已经运行apachectl -t
命令看看出了什么问题,我只是得到这个错误
httpd: Could not reliably determine the server's fully qualified domain name, using Foo-Bars-MacBook.local for ServerName
所以我的问题是,如何配置 DocumentRoot/index 页面,我可以运行什么样的诊断程序来查看为什么这不起作用?
-布赖恩