ubuntu下php开发环境快速搭建
Posted 未来分析师
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu下php开发环境快速搭建相关的知识,希望对你有一定的参考价值。
关于快速搭建php环境的步骤:https://jingyan.baidu.com/article/ca00d56c42b78ee99eebcf3c.html。
我遇到的一些问题: 在安装了apache服务器之后,默认apache网站root目录并不是网上所说的 /var/www目录。
解决办法:
使用命令查看相关配置文件:
1 sudo gedit /etc/apache2/apache2.conf
2 sudo gedit /etc/apache2/httpd.conf
3 sudo gedit /etc/apache2/sites-enabled/000-default
2 sudo gedit /etc/apache2/httpd.conf
3 sudo gedit /etc/apache2/sites-enabled/000-default
最后发现其中只有apache2.conf有内容,另外两个都是空文件。
在apache2.conf文件中没有配置DocumentRoot这一项,可以自己手动添加:
DocumentRoot "/vim/www"
以上是关于ubuntu下php开发环境快速搭建的主要内容,如果未能解决你的问题,请参考以下文章