1.安装Apache2
sudo apt-get install apache2
2.修改Apache2端口(可以选择不修改)
vi /etc/apache2/ports.conf
#将80改为想要的端口
#重启服务
service apache2 resatrt
3.访问首页
在浏览器输入:http:\\127.0.0.1:80
4.创建软连接,将静态文件指向Apache的html目录下:
#进入html目录
cd /var/www/html
#创建软连接
ln -fs /root/xichuan/files file
5.在/root/xichuan/files目录中访问文件,并访问
访问路径:http:\\127.0.0.1:80\file
其实非常简单了,只要你思考一下,并动起手来
github上有更多的笔记:Raray-chuan (兮川) · GitHub