301 Permanent Redirect - Joomla 1.5
Posted by: theblase
Posted on: 2009-08-08 02:09:00
Can anyone help me how do I add a permanent redirect to my site? I would like to redirect from "digiterra.hu" to "www.digiterra.hu" in .htaccess
I have already tried the followings, but none worked:
# 301 Permanent Redirect
RewriteEngine On
RewriteCond %{HTTP_HOST} ^digiterra\.hu$[NC]
RewriteRule ^(.*)$ http://www.digiterra.hu/$1[R=301,L]
not worked...
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.digiterra\.hu$ [NC]
RewriteRule ^(.*)$ http://www.digiterra.hu/$1 [L,R=301]
not worked...
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.digiterra.hu$
RewriteRule ^(.*)$ http://www.digiterra.hu/$1 [R=301]
Can anyone help me?
Thanks in advance!
theblase