Identify And Redirect To iPhone Using .htaccess - I am Programmer 404

Post Top Ad

Post Top Ad

1 Aug 2019

Identify And Redirect To iPhone Using .htaccess

Identify-And-Redirect-To-iPhone-Using-.htaccess-1
In this article, we going to see how to identify and redirect to iPhone using .htaccess. In the huge market, you target only iPhone uses to identify and redirect a particular link or page. Here is how to redirect to iPhone traffic with .htaccess.

Redirect The User To iPhone Specific Subdomain

2
3
RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} iPhone
RewriteRule .* http://iphone.softaox.info/ [R]

Above code will identify and redirect iPhone users to an iPhone specific subdomain ( example: http://iphone.softaox.info/ ).

Redirect The User To iPhone Secific Directory

If would you like to redirect to a subdirectory of your website, ( example: softaox.info/iPhone-site/ ), you need to use the following code:

Post Top Ad