2016-04-07 96 views
-1

在同一臺服務器中,我想重定向具有相同文件夾的不同域。例如。 http://test.com/thx/http://def.com/thx/htaccess使用同一文件夾重定向不同的域

無論我在「test.com/thx/」下加載的子頁面將被重定向到「def.com/thx/」。

+0

嘗試REGEX http://superuser.com/questions/155139/htaccess-301-redirect-with-regular-expressions –

+1

你能告訴我們你的代碼嗎? – starkeen

+0

我解決了它。 RewriteEngine on RewriteCond%{HTTP_HOST}^test.com [NC] RewriteRule ^(。*)$ http://def.com/thx/$1 [R = 301,NC]現在可以使用了。 – Virgil

回答

1

這是從一個URL重定向到另一個網址

#Redirect old file path to new file path 
Redirect /olddirectory/oldfile.html http://example.com/newdirectory/newfile.html 
+0

只能更改域名?我想保持文件夾/ thx /相同,只需將test.com更改爲def.com。此外,文件夾/ thx /下的所有文件都可以自動更改域。 – Virgil

0

讓我知道它是否適合你的方式。 Check this out

+0

我只是使用.htaccess來解決問題。不管怎樣,謝謝你。 – Virgil

相關問題