How to redirect website to its mobile version ?

Jack London

New member
Joined
Jul 9, 2012
Messages
386
Points
0
Hi all,

How to redirect website to its mobile version when user visits website on their mobile phone ?
 

hoangvu

New member
Joined
Jun 6, 2012
Messages
1,844
Points
0
How to redirect your website to its mobile version

You can try methods below:

Javascript Method
Because mobile phones typically have a small screen width, you can redirect visitors to your mobile site if they have a screen width of less than or equal to 800 pixels. You can use the following code to do this:
Code:
<script type="text/javascript">
	<!--
	if (screen.width <= 800) {
		window.location = "http://m.domain.com";
	}
	//-->
</script>
While testing this on a SAMSUNG smart phone, the screen resolution varied based upon how the phone was held. To get the best results, you may have to test with various smart phones.
Please keep in mind however that if the user does not have javascript enabled, this will not work.

.htaccess redirects
You can use a .htaccess redirect to transfer visitors based upon mime types that their browser accepts. For example, if the user's browser accepts mime types that include WML (Wireless Markup Language), then most likely it is a mobile device.

The code below should be placed in your .htaccess file:
Code:
RewriteEngine On
# Check for mime types commonly accepted by mobile devices
RewriteCond %{HTTP_ACCEPT} "text\/vnd\.wap\.wml|application\/vnd\.wap\.xhtml\+xml" [NC]
RewriteCond %{REQUEST_URI} ^/$
RewriteRule ^ http://m.domain.com%{REQUEST_URI} [R,L]
 
Newer threads
Replies
3
Views
5,792
Replies
9
Views
5,029
Replies
14
Views
12,178
Latest threads
Replies
1
Views
112
Replies
0
Views
124
Replies
0
Views
172
Replies
5
Views
440
Recommended threads
Replies
7
Views
6,262
Replies
2
Views
1,550
Replies
17
Views
5,687
Replies
10
Views
4,054
Replies
14
Views
7,451

Latest postsNew threads

Referral contests

Referral link for :

Sponsors

Popular tags

You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an alternative browser.

Top