301 Permanent Redirect - Joomla 1.5

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

Re: 301 Permanent Redirect - Joomla 1.5

Posted by: sXi
Posted on: 2009-08-08 02:21:00


RewriteEngine on
RewriteCond %{HTTP_HOST} ^digiterra\.hu
RewriteRule ^(.*)$ http://www.digiterra.hu/$1 [R=permanent,L]




How To Install PHP.INI / ionCube on DreamHost

Re: 301 Permanent Redirect - Joomla 1.5

Posted by: theblase
Posted on: 2009-08-08 02:39:00

I have added the mentioned lines to my .htaccess file as you suggested it for me, but the redirect still not works!

If I enter "digiterra.hu" in my browser I will see "http://digiterra.hu" link instead of http://www.digiterra.hu.

You can try it also.

Any idea?

Re: 301 Permanent Redirect - Joomla 1.5

Posted by: sXi
Posted on: 2009-08-08 03:26:00

Panel > Domains > Manage Domains

- Click Edit next to digiterra.hu

- Change the How do you like the www in your URL? setting.




How To Install PHP.INI / ionCube on DreamHost

Re: 301 Permanent Redirect - Joomla 1.5

Posted by: theblase
Posted on: 2009-08-08 04:15:00

Thanks! The mentioned settings working for me! Many thanks!

Do I need to use this setings with the modification in the .htaccess?

RewriteEngine on
RewriteCond %{HTTP_HOST} ^digiterra\.hu
RewriteRule ^(.*)$ http://www.digiterra.hu/$1 [R=permanent,L]

?

Thanks in advance!

Edited by theblase on 08/08/09 04:16 AM (server time).

Re: 301 Permanent Redirect - Joomla 1.5

Posted by: sXi
Posted on: 2009-08-08 04:24:00

The htaccess settings shouldn't be required.

The Panel appears to change the settings at a lower level.




How To Install PHP.INI / ionCube on DreamHost

Re: 301 Permanent Redirect - Joomla 1.5

Posted by: theblase
Posted on: 2009-08-08 04:44:00

Thanks! The domain Permanent redirect now working for me!

:)) Hurray!!!

Regards,
theblase

Tags: rewriterulehost wwwthanks in advancehtaccess