如果想要实现访问jingguan.365use.com时,跳转到<http://www.landscapemedia.cn ,可以做如下操作>
1 2 3 4 5 6
| <VirtualHost *:80> ServerName jingguan.365use.com RewriteEngine on RewriteCond %{HTTP_HOST} ^jingguan.365use.com [NC] RewriteRule ^(.*) http://www.landscapemedia.cn$1 [R=permanent,L] </VirtualHost>
|