-2

I am trying to redirect my example.com to WWW.example.com for this I have used some code in .ht-access file

the code is

    # Force the "www."
RewriteCond %{HTTP_HOST} !^www\.topseonow\.com$ [NC]
RewriteRule ^(.*)$ http://www.topseonow.com/$1 [R=301,L]

But after this code change I am facing some problem in browser . getting error message

error message: The www.topseonow.com page isn’t working www.topseonow.com redirected you too many times. Try clearing your cookies

where I am wrong

note: this domain is addon domain

Cœur
  • 37,241
  • 25
  • 195
  • 267
Trend Snaps
  • 198
  • 4
  • 15

1 Answers1

0

Try this and restart the server,

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.topseonow.com$ [NC]
RewriteRule ^(.*)$ http://www.topseonow.com/$1 [L,R=301]
Castro Roy
  • 7,623
  • 13
  • 63
  • 97
user3040610
  • 750
  • 4
  • 15