共计 1430 个字符,预计需要花费 4 分钟才能阅读完成。
说明:Mac 在安装完成 Mac 系统的时候它已经自带了 Apache 服务器,接下来就是配置和将它启动运行了。那么接下来要做的事情就是:
1. 配置 apache 的配置文件
2. 设置虚拟主机
启动并查看 apache
打开终端输入以下命令:
$sudo apachectl start
$sudo apachectl -v
配置 apache 主配置文件
apache 的主配置文件在路径/etc/apache2/ 下
先将原来的文件备份
$sudo cp /etc/apache2/httpd.conf /etc/apache2/httpd.conf.backup
修改主配置文件
$vi /etc/apache2/httpd.conf
要修改的地方如下, 为了便于参考默认配置,笔者将只是将修改的地方注释掉
…
<Directory />
#AllowOverride none
# Require all denied
Require all granted
AllowOverride all
</Directory>
…
# Virtual hosts
#Include /private/etc/apache2/extra/httpd-vhosts.conf
Include /private/etc/apache2/extra/httpd-vhosts.conf
…
Ps:某些老版本的配置中时 allow 什么的在网上能找到非常多的教程,在这就不加解释了。
设置虚拟主机
apache 的默认的根目录在 /Library/WebServer/ 下,配置虚拟主机后可以不用理会默认的网站根目录,根据自己的需要在合适的地方建立不同的网站目录。
修改 httpd-vhosts.conf 文件,文件位置在/etc/apache2/extra/ 下.
备份原有的文件
$sudo cp /etc/apache2/extra/httpd-vhosts.conf /etc/apache2/extra/httpd-vhosts.conf.backup
$sudo vi /etc/apache2/extra/httpd-vhosts.conf
设置虚拟主机 (此站点本机访问域名是 mysite.local, 根目录是 /var/wwwroot/abc)
…
<VirtualHost *:80>
ServerAdmin webmaster@mysite.local
DocumentRoot “/var/wwwroot/abc”
ServerName mysite.local
ErrorLog “/private/var/log/apache2/mysite.local-error_log”
CustomLog “/private/var/log/apache2/mysite.local-access_log” common
</VirtualHost>
…
修改 hosts 文件,文件位置在 /etc/
$sudo vi /etc/hosts
将自定义的域名绑定到 127.0.0.1
…
127.0.0.1 localhost mysite.local
…
重新启动 Apache 服务器
sudo apachectl restart
本文永久更新链接地址:http://www.linuxidc.com/Linux/2016-03/129524.htm