环境:ubuntu16.04
修改欢迎提示:sudo nano /etc/motd
php开发
下载phpstudy(官网有教程)
注意:局域网访问是需要操作修改/phpstudy/server/httpd/conf/httpd.conf
修改apache2 根目录位置 DocumentRoot "/home/laohu" <Directory "/home/laohu">
<VirtualHost *:80>
DocumentRoot "/phpstudy/www"
</VirtualHost>
<Directory "/phpstudy/www">
Options Indexes FollowSymLinks
Order allow,deny
Allow from all
AllowOverride All
</Directory>
否则会出现没有
You don't have permission to access / on this server
末尾添加
IndexOptions Charset=GBK
防止中文乱码