簡體   English   中英

.htaccess將url從子域重寫到主域

[英].htaccess rewrite url to main domain from subdomain

我有一個域名,例如:this.that.com(也可以從以下網址訪問):that.com/this

我想做的是使服務器將所有請求從上述兩個URL傳輸到:this.com

我需要它,所以如果我輸入this.that.com,它將自動轉移到this.com

提前致謝。

要將所有請求重定向到this.com ,請匹配所有內容(尚未this.com

RewriteEngine On
RewriteCond %{HTTP_HOST} !^this\.com$
RewriteRule .* http://this.com/$0 [R,L]

如果要重定向到主頁,則省略URL路徑

RewriteEngine On
RewriteCond %{HTTP_HOST} !^this\.com$
RewriteRule .* http://this.com/ [R,L]

如果一切正常,則可以切換到R=301重定向。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM