phpiphonehtmlmobile-phones

Making a site mobile friendly


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!


Solution

  • The user-agent in 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 media CSS selector can be used as well to adapt the layout to the kind of device. There is media type handheld, but I don't know how well it is supported.