Any script that transform normal traffic to mobile? (fake)

muxmkt

Power Member
Joined
May 24, 2011
Messages
589
Reaction score
146
Hi,

Im looking for a way to make a normal browser access look like a mobile access.

Any way to do it?


Regards
 
Hi,

Im looking for a way to make a normal browser access look like a mobile access.

Any way to do it?


Regards

If is your browser, may be using the plugin for firefox, called proxy tool.

has many different setting, u can change, dont know if has mobile phones user agents, or if u can add.

try also some other similar add on, too.

I used for my desktop, but never looked into mobile.
 
Hey guys thanks for the reply, but what i need is a script that i add to my site that makes ALL THE VISITORS access as they were coming via mobile phones. U get it?

Regards
 
that is impossible
you cannot change the user-agent with javascript
 
I think it's possible by messing with the .htaccess file.
 
you can do it with mod_headers.
but i doubt that is what OP wants, i assume he wants to fake some mobile traffic for his advertiser, but impossible without access to the browser/network-traffic
 
What mod_headers would do exactly?

What i want it is make some (or all) the traffic look like mobile, but actually they are from desktop.
 
What mod_headers would do exactly?

What i want it is make some (or all) the traffic look like mobile, but actually they are from desktop.

It's not possible to change someone else's user agent. You can change the way your server looks at them, but you can't change the actual user agent.
 
It's not possible to change someone else's user agent. You can change the way your server looks at them, but you can't change the actual user agent.


changing the way my server recognize it would work i think


how could i do it? any tips?
 
you need apache with mod_headers installed
then try something like this in your htaccess file (not tested)
Code:
<IfModule mod_headers.c>
RequestHeader set User-Agent "Mozilla/5.0 (Linux; U; Android 2.2; en-us; Nexus One Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1"
</IfModule>
 
Back
Top