Virtual Domain 指向請教

Virtual Domain 指向請教

各位好,

我申請了一個網址如: http://www.xxxxx.com, 也為這網址作了ip指向, 它指向我的服務器 123.123.123.123.
機器 123.123.123.123 有二張網卡, 一張對外, 也就是123.123.123.123 另一張對內 192.168.1.1 的.
現在我的另一台網頁服務器是在 192.168.1.100, 而我也為它作了一個virtual domain 的設定如下:

[Copy to clipboard] [ - ]
CODE:
<VirtualHost *>
ServerAdmin xxxxx@mail.com
DocumentRoot /var/www/www.xxxxx.com/html
ScriptAlias /cgi-bin/ /var/www/www.xxxxx.com/cgi-bin/
ServerName www.xxxxx.com
ErrorLog logs/www.xxxxx.com-error.log
CustomLog logs/www.xxxxx.com.log common
</VirtualHost>

我再在 /var/www/www.xxxxx.com/html 下建了一個index.html, 它是會自動指向 192.168.1.100 的, 如下:

[Copy to clipboard] [ - ]
CODE:
<html>
<head>
<script language="javascript">
function gotoRealPS() {
        document.location.href="http://192.168.1.100/";
}
gotoRealPS();
</script>
</head>
<body>
Please goto <a href="192.168.1.100">192.168.1.100</a>
</body>
</html>

但現在發現, 當我輸入 http://www.xxxxx.com 時, 它不能顯示任何東西, 而網址就出現 http://192.168.1.100.
請問是否我在index.html的指向有錯呢? 我想再問, 我應該怎樣更正才可以做由 www.xxxxx.com 經virtual domain指向內部機器 192.168.1.100 呢?

請各位指教. 謝謝.
再請各位指教. 謝謝.