Is there a way to make it so when a site is viewed with a phone or other small mobile device the site automatically recognizes that it is being viewed as such and either re-directs to a phone friendly subdomain mirror or automatically calls a script that makes it phone friendly?
Any articles or advice would be greatly appreciated!
The
user-agentin the HTTP request can help detect the browser. You can then redirect to the subdomain when the page is viewed from specific browsers.Otherwise, the
mediaCSS selector can be used as well to adapt the layout to the kind of device. There is media typehandheld, but I don’t know how well it is supported.