Hi I have an application which uses opencart. I would like to make a 301 reditect in case the user types http://mysite.com. To be redirected in http://www.mysite.com (301 status code)

Here is my .htaccess content:

#Options +FollowSymlinks

RewriteEngine On

#OPENCART REWRITES START

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.*) index.php

#OPENCART REWRITES END

RewriteEngine On

RewriteBase /

RewriteCond %{HTTP_HOST} !^www.mysite.com$ [NC]

RewriteRule ^(.*)$ http://www.mysite.com/$1 [R=301,L]

It is doing 302 redirect.

Thanx, Granit

link|improve this question

Anybody wanna help? – Granit Oct 19 '09 at 11:17
Are you sure it's 302 instead of 301? Ran that .htaccess and it works okay with 301, – random Oct 19 '09 at 12:43
Unfortunately I am sure. – Granit Oct 20 '09 at 13:37
Could you perhaps show the part of your logs that shows it going 302? – random Oct 22 '09 at 3:44
feedback

2 Answers

up vote 2 down vote accepted

I think all that you are wanting to do is this inside of your Apache config file.

RewriteEngine on
RewriteCond %{HTTP_HOST} ^mysite\.com
RewriteRule ^(.*)$ http://www.mysite.com/$1 [R=301,L]
link|improve this answer
Unfortunately it does not work for me! – Granit Oct 20 '09 at 13:40
feedback

I use like this:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^mysite\.net
RewriteRule ^(.*)$ http://www.mysite.net/$1 [R=permanent,L]
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.