apache   配置的问题     紧急!!在线等

apache   配置的问题     紧急!!在线等

我想在地址栏输入比喻www.sina.com     跳转到   httpp://localhost/Nihao/index.jsp

请问怎样配置,有哪位大虾知道!!!紧急!!
加一个跳转页面不就能实现吗。若你想还在所输入的域名下但是内容以跳转你可以使用Apache的Proxy功能。配置如下

<VirtualHost   127.0.0.1>
        ServerName   ww.sina.com

        ProxyPass   /   http://localhost/
        ProxyPassReverse   /   httpp://localhost/
        ProxyPreserveHost   on
</VirtualHost>
首先打打开代理功能

namevirtualhost   *:80
<VirtualHost   *:80>
        ServerName   www.sina.com
        ProxyPass   /   http://localhost/
        ProxyPassReverse   /   httpp://localhost/
  </VirtualHost>
谢谢