博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Mac Apache PHP 基础环境配置
阅读量:6258 次
发布时间:2019-06-22

本文共 977 字,大约阅读时间需要 3 分钟。

  hot3.png

apache 在终端中进入apache所在目录cd /etc/apache2sudo 表示用管理员权限备份apache2配置文件sudo cp http.conf http.conf.bak还原apache2配置文件sudo cp http.conf.bak http.conf# 编辑http.conf 不能使用粘贴$ sudo vim http.conf# 查找 DocumentRoot/DocumentRoot#将一下两行中的目录 ,替换成在Finder中新建的目录#例如在 用户目录下 新建的 Sites# mkdir ~ SitesDocumentRoot "/Library/WebServer/Documents"
DocumentRoot "/Users/userName/Sites"
#进入编辑模式i#向下找到Options FollowSymLinks Multiviews加一个单词Options Indexes FollowSymLinks Multiviews#进入命令模式 esc# 查找PHP配置项/php去掉php前的#$sudo cp /etc/php.ini.default /etc/php.ini# 启动apache服务器$ sudo apachectl -k start#停止apache服务器$ sudo apachectl -k stop#重启apache服务器$ sudo apachectl -k restart

如果 启动apache的时候提示这个错误:AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1. Set the 'ServerName' directive globally to suppress this message

回到http.conf 文件 修改下

原始的ServerName 被#号注释着  修改成?这样的  就改成本机地址;

ServerName 127.0.0.1:80

转载于:https://my.oschina.net/soci/blog/633098

你可能感兴趣的文章
交互设计的 UI 原则
查看>>
JVM的内存区域划分
查看>>
100行PHP代码实现socks5代理服务器
查看>>
js框架
查看>>
linux安装postgresql
查看>>
Android开发、测试持续集成环境Jenkins搭建
查看>>
linux RZSZ RZSZ 安装
查看>>
BPM 是与非 -- 什么是BPM,如何辨别是否BPM产品,以及如何选择BPM产品
查看>>
七秘诀工作效率与薪水翻番
查看>>
spring boot + log4j2 配置
查看>>
不能当报表用的表单不是好的文档
查看>>
Linux Deepin 2013 设置双显卡之关闭独显
查看>>
关于java web中Filter和Servlet的一些理解
查看>>
Bridge模式
查看>>
移动互联网时代的智能OA翘楚
查看>>
php总结
查看>>
长按电源键弹出的菜单GlobalActionsDialog
查看>>
discuz日志错误
查看>>
springMVC统一异常json输出
查看>>
Flex错误:进程已终止,没有建立到调试器的连接。 initial content not ...
查看>>