关于多域名指向同一服务器,apache怎么做域名解析,并跳转到对应的目录下:
1.找到httpd.conf;
如果是linux一般默认在/etc/httpd/conf/httpd.conf
2.修改文件;
在文件的末尾加上下面的解析语句,指定路径和域名:
<VirtualHost *:80> DocumentRoot D:/SoftWare/wamp/www/web/free/ ServerName www.freexyz.cn </VirtualHost> <VirtualHost *:80> DocumentRoot D:/SoftWare/wamp/www/web/xyz/ ServerName www.freexyz.net </VirtualHost>
3.重启apache服务器
配置成功后需要重启apache,如果在linux下:service httpd restart