0

Possible Duplicate:
asp.net mvc: How to redirect a non www to www and vice versa

I want to redirect my site url from abc.com to www.abc.com so that I get standard URL format. How can I achieve this? Can any one help me out?

Community
  • 1
  • 1
Krutal Modi
  • 477
  • 9
  • 25

1 Answers1

1

You should setup a "HTTP 301 redirect" from abc.com to www.abc.com

Techniques for doing this depend on what kind of HTTP server platform you are using, and are described succinctly in the following section of Wikipedia's page on URL redirection:

https://en.wikipedia.org/wiki/URL_redirection#HTTP_status_codes_3xx

IvoC
  • 143
  • 7