2012-06-13 227 views
0

我有這個網站www.ipsum.nl。和一個子域名爲lorum.ipsum.nl。 我也有其他網站www.othersite.com。如何將一個子域名重定向到其他網站

如何讓lorum.ipsum.nl重定向到www.othersite.com而不必加載其他頁面,如'index.html'?

+0

你甚至沒有提及你使用的是什麼Web服務器。 Apache的? Nginx的? – jdi

回答

0

使用您.htaccess文件:

RewriteEngine on 
Redirect 301 http://lorum.ipsum.nl http://www.othersite.com 

,或者您可以使用正則表達式與RewriteEngine敘述匹配子域。

相關問題