注册了域名之后,多个php项目可以用多个域名分别绑定吗
程序员文章站
2024-02-09 15:24:58
...
我注册了好几个域名,服务器中部署的apache上运行的多个php项目,可以用多个域名分别绑定吗?怎么绑定啊
回复内容:
我注册了好几个域名,服务器中部署的apache上运行的多个php项目,可以用多个域名分别绑定吗?怎么绑定啊
可以的。使用virtualhost即可。
你的域名先使用A记录全部解析到服务器的IP
编辑http-vhost.conf配置
DocumentRoot "D:/UPUPW_AP5.5/vhosts/hospital.com/web"
ServerName hospital.com:80
ServerAlias
ServerAdmin webmaster@hospital.com
DirectoryIndex index.html index.htm index.php default.php app.php u.php
ErrorLog logs/hospital.com-error.log
CustomLog logs/hospital.com-access_%Y%m%d.log comonvhost
Options FollowSymLinks
AllowOverride All
Require all granted
Require all denied
Require all denied
//D:/UPUPW_AP5.5/vhosts/hospital.com/web WEB目录
//ServerName hospital.com:80 绑定的域名
配置apache
的VirtualHost
,以我的项目为例:
找到服务器的httpd.conf
,然后配置下面内容:
ServerName admin.example.com
ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
ErrorLog logs/admin.example.com-error_log
CustomLog logs/admin.example.com-access_log common
ServerName www.demo.com
ProxyPass / http://localhost:8081/
ProxyPassReverse / http://localhost:8081/
ErrorLog logs/demo.com-error_log
CustomLog logs/demo.com-access_log common
上面的配置,是让apache
监听80端口,也就是默认的端口,然后当用户访问admin.example.com
的时候,就把请求分发到8080
端口的应用。当用户访问www.demo.com
的时候,就把请求分发到8081
端口。当然,你又多少程序,就要配置多少个VirtualHost
。如果还不明白,可以搜apache端口转发
,很多教程哦。
上一篇: php数组函数array_search() 按元素值返回键名
下一篇: Hot Pi_MySQL