Pointing http://domain.ca to http://www.domain.ca

nootkan

Well-Known Member
Oct 25, 2006
170
12
168
I've looked through a few posts here in this forum but cannot seem to find what I'm looking for. I need to have the previous url: http://domain.ca point to http://www.domain.ca so I don't have to track down all the reciprocal links. Presently it only works with www.
Paul
 
Last edited by a moderator:

carsu

Registered
Nov 24, 2009
3
0
51
I've looked through a few posts here in this forum but cannot seem to find what I'm looking for. I need to have the previous url: http://domain.ca point to http://www.domain.ca so I don't have to track down all the reciprocal links. Presently it only works with www.
Paul
i thing it would be possible by.
1. htaccess
2. domain A pointing

is it what are you lookin for ?
 
Last edited by a moderator:

mickbeng

Well-Known Member
Oct 3, 2006
56
0
156
Penang, Malaysia
You might try this from your .htaccess file.

Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain.ca
RewriteRule (.*) http://www.domain.ca/$1 [R=301,L]
With the above code, it will redirect all domain.ca domain to http://www.domain.ca.
 
Last edited by a moderator: