在同一臺服務器中,我想重定向具有相同文件夾的不同域。例如。 http://test.com/thx/至http://def.com/thx/。htaccess使用同一文件夾重定向不同的域
無論我在「test.com/thx/」下加載的子頁面將被重定向到「def.com/thx/」。
在同一臺服務器中,我想重定向具有相同文件夾的不同域。例如。 http://test.com/thx/至http://def.com/thx/。htaccess使用同一文件夾重定向不同的域
無論我在「test.com/thx/」下加載的子頁面將被重定向到「def.com/thx/」。
這是從一個URL重定向到另一個網址
#Redirect old file path to new file path
Redirect /olddirectory/oldfile.html http://example.com/newdirectory/newfile.html
只能更改域名?我想保持文件夾/ thx /相同,只需將test.com更改爲def.com。此外,文件夾/ thx /下的所有文件都可以自動更改域。 – Virgil
嘗試REGEX http://superuser.com/questions/155139/htaccess-301-redirect-with-regular-expressions –
你能告訴我們你的代碼嗎? – starkeen
我解決了它。 RewriteEngine on RewriteCond%{HTTP_HOST}^test.com [NC] RewriteRule ^(。*)$ http://def.com/thx/$1 [R = 301,NC]現在可以使用了。 – Virgil