初学linux之Apache多端口配置php项目

1:安装完成LAMP环境

具体可查看我的另一篇文章 https://blog.csdn.net/qq_29099209/article/details/79206170

2:进入 /etc/httpd/conf 目录

打开http.conf 文件 

在Listen 80下面添加你所需要监听的端口

在末尾添加

Include conf/extra/httpd-vhosts.conf

3:创建extram目录

mkdir extra

4:创建http-vhosts.conf文件

vi httpd-vhosts.conf

在文件中添加


    AllowOverride All




    DocumentRoot /var/www/html/xxxxx
    ServerName localhost:10002

5:重启Apache服务

service httpd restart

按照上述步骤 即可完成多端口配置  快来试试吧!

 

你可能感兴趣的:(PHP,服务器)