-2

Is there any current way to redirect to the mobile version of a desktop site without having to add any scripts to the desktop version?

waterprism
  • 71
  • 7

1 Answers1

1

The "right" way to detect mobile visitors is to check the value of the User-Agent HTTP header on incoming requests. You would do this at the web server level or the application level.

Since web server and actual web site implementation will differ from customer to customer, you're not going to find a magic bullet solution for this.

wsanville
  • 37,158
  • 8
  • 76
  • 101