Apache: rewriting requests for iPhone and iPod Touch
4/08/2009This snippet will rewrite all requests to the page iphone.html when viewed on iPhone or iPod Touch. Requests for .gif and .css files are not rewritten, so you can include stylesheets and images in your iPhone-specific page.
RewriteEngine On RewriteCond %{HTTP_USER_AGENT} .*Mobile.*Safari RewriteRule !\.(gif|css)$ /iphone.html [L]
Source: http://webdirect.no/mobile/apache-rewrite-rule-for-iphone-users/