0

所以我想在我的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 页面,我可以运行什么样的诊断程序来查看为什么这不起作用?

-布赖恩

4

1 回答 1

0

httpd:无法可靠地确定服务器的完全限定域名,使用 Foo-Bars-MacBook.local 作为 ServerName - 此错误可能与您的问题无关。我的大多数测试服务器都给出了这个错误,但它们运行没有问题。

请尝试插入没有ip和http的行,

listen 2727

编辑:您可以尝试以下操作:

NameVirtualHost *:2727
Listen 2727
于 2012-08-16T02:04:19.333 回答