2013-08-05 205 views
0

我有一個域名 abc.ca已經在運行&谷歌爬了那個網址。如何從一個域重定向到另一個域?

現在,我要爲 abc.com

所以,我怎麼能管理所有URL abc.ca的公司 - > abc.com

使用htacees。網站建立在PHP Joomla。

abc.ca/def.html - > abc.com/def.html

有數千頁。我不能在htaccess中編寫個人301重定向。

我們可以在PHP

​​

最好是PHP的網站或htaccess的網站做這樣做呢?

回答

1

你可以試試這個:

RewriteCond %{HTTP_HOST} !^www\.abc.\.com 
RewriteRule ^(.*)$ http://www.abc.com/$1 [R=permanent,L] 
0

我有simmilar問題,但跨域一個

Click Here

我得到了通過該解決了我的問題。

你甚至可以通過在dns中的cname條目來做它的類似的兩個域。

0

我沒有測試它,但它應該是這樣的:

RewriteEngine On 
RewriteCond %{HTTP_HOST} ^abc.ca$ [OR] 
RewriteCond %{HTTP_HOST} ^www.abc.ca$ 
RewriteRule (.*)$ http://www.abc.com/$1 [R=301,L] 

Redirect 301 /old/old.htm http://www.domain.com/new.htm 

否則你可能想看看這個question

0

試試這個

<FilesMatch "\.(tpl|ini|log)"> 
Order deny,allow 
Deny from all 
</FilesMatch> 
    RewriteBase/
    RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L] 
    RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L] 
    RewriteRule ^download/(.*) /index.php?route=error/not_found [L] 
    RewriteCond %{REQUEST_FILENAME} !-f 
    RewriteCond %{REQUEST_FILENAME} !-d 
    RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css) 
    RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA] 

在這裏你可以將RewriteBase /修改爲您的域名。 對於你可以給這個子域RewriteBase /subfolder

相關問題