当前位置:Linux教程 - Apache - apache - apache服务器有很多域名,重定向使得客户端只能看见一个域名

apache - apache服务器有很多域名,重定向使得客户端只能看见一个域名

apache服务器有很多域名,重定向使得客户端只能看见一个域名
2004-04-23 15:18 pm
来自:Linux文档
现载:Www.8s8s.coM
地址:无名

1. 安装mod_rewrite模块来实现;
2. 使用基于名字的虚拟主机配置,例如:
NameVirtualHost *
<VirtualHost *>
ServerName www.foo.net
ServerAlias foo.com
Redirect permanent / http://www.foo.com/
</VirtualHost>
<VirtualHost *>
ServerName www.foo.com
DocumentRoot /var/www/htdocs
</VirtualHost>