1

How do I redirect my url to www?

For example: https://myurl.com ---> https://www.myurl.com

Cisco
  • 20,972
  • 5
  • 38
  • 60
ApplePie
  • 1,155
  • 3
  • 12
  • 30

1 Answers1

3

If you're using Express, then check req.hostname - if the hostname doesn't start with "www" then you will want to res.redirect with a 301 (permanently moved) or 302 (temporarily moved) HTTP status, pointing to the new URL with "www" in it.

Kevin Hutchinson
  • 2,353
  • 2
  • 17
  • 10