2014-09-05 44 views
1

我正在尋找這樣做:.htaccess語法將一個域重定向到另一個而不匹配?

重定向example.com/(any-number)到example2.com/landing-page

example.com/(any-number)的數百篇文章全部其中一個數字結束。我不打算將我的其他網站上的電話號碼與直接訪問者的電話號碼匹配到單個登錄頁面。

當前htaccess的是這樣的:

`# BEGIN WordPress 
<IfModule mod_rewrite.c> 
RewriteEngine On 
RewriteBase/
RewriteRule ^index\.php$ - [L] 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule . /index.php [L] 
</IfModule> 

# END WordPress` 

回答

1

嘗試增加:

RewriteEngine On 
RewriteCond %{HTTP_HOST} ^my-site\.com$ [NC] 
RewriteRule ^([0-9]+)$ http://my-other-site.com/landing-page [L,R=301] 

在 「my-site.com」 網站的文檔根htaccess文件。

+0

謝謝,但那似乎不起作用。編輯我的原始帖子,以顯示我的htaccess文件的樣子。 – 2014-09-13 14:55:16

相關問題