IPhone redirect

I am using this code
<?php
$browser = $SERVER['HTTP_USERAGENT'];
$agent = substr($browser, 0, 7);
switch($agent) {
case "Mozilla":
header("Location: index.html"); // this is where you put the page you
want desktops to see
break;
default:
header("Location: wml/index.wml"); // this is where your page for
mobiles goes
?>
to send PC visitors to my homepage and mobile visitors to my mobile page.
It works great on PDAs, but not at all on iPhones. Anybody know how to beef
it up to recognize iPhones, too?

First off that is not the backup file, that is the software restore file. You can safely delete any files in that folder and iTunes will merely redownload them if the need arises for you to restore your phone. The backups are located at C:\Users\user\AppData\Roaming\Apple Computer\MobileSync\Backup on Vista and C:\Documents and Settings\user\AppData\Roaming\Apple Computer\MobileSync\Backup on XP (not sure about the Macs) iTunes will frequently have several un-needed backups (not the most recent) so you should look at the last edited on date and delete all but the most recent to save space and you will still have a backup to restore from.

Similar Messages

  • Iphone Redirecting email software

    I currently have an Iphone & DO NOT have the ability to connect into my companies exchange servers. What I am doing is FORWARDING my
    Emails from my laptop (always need to keep the laptop on) to a Gmail account. I then pick these up on my iphone. The issue is I can only reply to the Gmail email address NOt the originator of the emails. I am looking for tools/utilities to REDIRECT (instead of forward)
    emails to the gmail account. A Redirect will preserver the originators email & I can reply directly to it.
    I have tried a number of software like ERCFull, SperrySoftware, Outlook Redirect (but my companies servers do not allow an Redirect Rule)....But was not able to get them to work.
    Any help/suggestions please...Thanks in advance
    Tom Falsetta

    Try a DynDNS Mailhop outbound service. Lets you send via their servers with any email address you like. Not free but pretty good if it's the only option.

  • All web browsers, search engines and apps redirect automatically to broken links.

    Hi, I have a big problem. When I browse internet, my iPhone redirect it automatically to different links. most of them are broken links. When I try to stop, web browser or app will be closed. This occur with every web browser, google and apps such as Facebook, WhatsApp, Viber, etc. Why is this ? If I try to open a weblink in a web browser or an app, it will open original link and then redirect to a different web address automatically. And it content nothing. I am confused. Please help.

    thanks orangekay for your input. i downloaded both onyx and cocktail and ran them both fully (not at the same time of course) and the problem still persists, pages are still rendering in glyphs. i went in and did the full system with every option checked. still no luck.
    also after running the two utilities i've run into a new glitch. when a dialog box appears my pointer slowly moves automatically to the default button that is highlighted. its really strange, i'm not sure if thats a feature or not, but i havent had time to explore the situation.
    so you believe it's a font problem? hmm...
    thanks for the input again, geese, i guess this topic isnt very common, i've ony gotten one response =T

  • Bottom White Space

    On my website you can see that there is white space at the bottom but it ends just short of the true bottom, is there anyway I can make this so white continues down all the way?
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <link rel="stylesheet" href="layout.css" ... />
    <meta name="google-site-verification" content="_Plh0Sn97-RFeQaAZFoZgv8tZ9Ap9FhMbNGy3eq3CeM" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Home</title>
    <style type="text/css">
    <!--
    body {
        font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
        background: #4E5869;
        margin: 0;
        padding: 0;
        color: #000;
        background-image: url(Pictures/1276207208635.jpg);
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
        padding: 0;
        margin: 0;
    h1, h2, h3, h4, h5, h6, p {
        margin-top: 0;     /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
        padding-right: 15px;
        padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
        font-size: xx-large;
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
        border: none;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
        color:#09F;
        text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
        color: #06F;
        text-decoration: none;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
        text-decoration: none;
    /* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
    .container {
        width: 80%;
        max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
        min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
        background: #FFF;
        margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
        overflow: hidden; /* this declaration makes the .container clear all floated columns within it. */
    /* ~~ These are the columns for the layout. ~~
    1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
    2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.
    3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.
    4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.
    .sidebar1 {
        float: left;
        width: 20%;
        background: #93A5C4;
        padding-bottom: 10px;
    .content {
        padding: 10px 0;
        width: 60%;
        float: left;
    .sidebar2 {
        float: left;
        width: 20%;
        background: #93A5C4;
        padding: 10px 0;
    /* ~~ This grouped selector gives the lists in the .content area space ~~ */
    .content ul, .content ol {
        padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
    /* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
    ul.nav {
        list-style: none; /* this removes the list marker */
        border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
        margin-bottom: 15px; /* this creates the space between the navigation on the content below */
        color: #FFF;
    ul.nav li {
        border-bottom: 1px solid #666; /* this creates the button separation */
    ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
        padding: 5px 5px 5px 15px;
        display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
        text-decoration: none;
        background: #8090AB;
        color: #000;
    ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
        background: #6F7D94;
        color: #FFF;
    /* ~~ miscellaneous float/clear classes ~~ */
    .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
        float: right;
        margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
        float: left;
        margin-right: 8px;
    .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
        clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    .container .content h1 {
        font-family: OCR A Extended;
    body,td,th {
        color: #000;
    -->
    </style><!--[if lte IE 7]>
    <style>
    .content { margin-right: -1px; } /* this 1px negative margin can be placed on any of the columns in this layout with the same corrective effect. */
    ul.nav a { zoom: 1; }  /* the zoom property gives IE the hasLayout trigger it needs to correct extra whiltespace between the links */
    </style>
    <![endif]-->
    <!--Analystics-->
    <script type="text/javascript">
      var _gaq = _gaq || [];
      _gaq.push(['_setAccount', 'UA-19878287-1']);
      _gaq.push(['_trackPageview']);
      (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
    </script>
    <!--Iphone Redirect-->
    <script type="text/javascript" src="http://widgets.amung.us/tab.js"></script><script type="text/javascript">WAU_tab('tnvkzuebf877', 'right-upper')</script>
    <script type="text/javascript" src="http://hunterthornsberry.com/mobilejs.js"> if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
         if (document.cookie.indexOf("iphone_redirect=false") == -1) window.location = "http://hunterthornsberry.com/mobile.html";
    </script>
    </head>
    <body>
    <div class="wrapper">
    <div class="container" align="left">
      <div class="sidebar1">
        <ul class="nav">
          <li><img src="../../Pictures/TDLLOGO.png" width="172" height="129" /></li>     
          <li><a href="index.html">Home</a></li>      <li><a href="About.html">About Me</a></li>
          <li><a href="Blog.html">Personal Blog</a></li>
          <li><a href="tech.html">Tech Stuff</a></li>
          <li><a href="Projects.html">Projects</a></li>
          <li><a href="design.html">Design/Art</a></li>
          <li><a href="Contact.html">Contact</a></li>
        </ul>
        <p> <center><script type="text/javascript"><!--
    google_ad_client = "pub-9636713487359174";
    /* HunterThornsberry */
    google_ad_slot = "9954026781";
    google_ad_width = 160;
    google_ad_height = 600;
    //-->
    </script>
    <script type="text/javascript"
    src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
    </script></center></p>
      <!-- end .sidebar1 --></div>
      <div class="content">
        <center><h1>Home</h1>
          <p><strong><em>UNDER CONSTRUCTION</em></strong></p>
          <p>
            <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="550" height="400" id="FlashID" title="This is my life">
              <param name="movie" value="../../Intro.swf" />
              <param name="quality" value="high" />
              <param name="wmode" value="opaque" />
              <param name="swfversion" value="6.0.65.0" />
              <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
              <param name="expressinstall" value="../../Scripts/expressInstall.swf" />
              <param name="LOOP" value="false" />
              <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
              <!--[if !IE]>-->
              <object type="application/x-shockwave-flash" data="../../Intro.swf" width="550" height="400">
                <!--<![endif]-->
                <param name="quality" value="high" />
                <param name="wmode" value="opaque" />
                <param name="swfversion" value="6.0.65.0" />
                <param name="expressinstall" value="../../Scripts/expressInstall.swf" />
                <param name="LOOP" value="false" />
                <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
                <div>
                  <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
                  <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
                </div>
                <!--[if !IE]>-->
              </object>
              <!--<![endif]-->
            </object>
          </p>
          <p> </p>
        </center>
      </div>
      <div class="sidebar2" align="right">
    <script type="text/javascript"><!--
    google_ad_client = "pub-9636713487359174";
    /* Sky */
    google_ad_slot = "5228573680";
    google_ad_width = 120;
    google_ad_height = 600;
    //-->
    </script>
    <script type="text/javascript"
    src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
    </script>
      <!-- end .container --></div>
    <script type="text/javascript">
    <!--
    swfobject.registerObject("FlashID");
    //-->
    </script>
    </div>
    <!--Footer-->
    <div class="push"></div>
    <div class="footer">
    <p><center>Copyright (c) 2008</p>
    </div>
    </body>
    </html>

    Well its the 'footer' <div> and the <div> before that which need some attention.
    Add the below to your css styles:
    .footer {
    width: 80%;
    margin: 0 auto;
    background-color: #fff;
    .footer p {
    margin: 0;
    padding: 0;
    Then remove the "push" <div> completely:
    <div class="push"></div>
    <div class="footer">
    <p><center>Copyright (c) 2008</p>
    </div>
    To just leave:
    <div class="footer">
    <p><center>Copyright (c) 2008</p>
    </div>

  • Somebody knows why I can not download app from store of the other country?

    hi to everybody, I have a questions for you, I have an iphone 4s ( I know its old) i tried to download some application that my friends have raccomandated to me. The app in question is QQmusic, there isn't in the italian market so the iphone redirect me to the chinese apple store, but when i tried to download (the app is free) i get the message that my prifile can download only from Italian market? So my question is: Why? How i can download from other countrie's apple store?

    The 3rd party developers who create and own the content are who decide where in the world that their apps are sold, not Apple. If a developer isn't ready to provide the language resourses within their app or  to offer support for their app in a particular language, then they choose where to sell their app. Apple sells its apps in all of the app stores.

  • I have an iPhone 4S I have done the recent update 6.1 and now my App Store is not working when I go into the feature tab I get an error " too many HTTP redirects" how do I fix this ? The other tabs are working and it is working on my iPad also

    I am having a problem getting into the App Store on my iPhone since the recent update, I have a 4s and it appears the feature tab is not working. When I try to go into the feature tab in the App Store I get a message "too many HTTP redirects" ?... Does anyone now hoe to fix this issue, the other tabs are working okay and everything is working on my iPad ?

    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router (Auto is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • Is there a way to set up an auto redirect from my work email to my iPhone?

    I currently using my personal email on my iPhone. However, I would like to find a way to get my work emails automatically redirected to my iPhone when I am not in the office. I don't want to set up a separate account because I only want those emails which I receive after I leave the office. I'm envisioning something similar to call forwarding on a phone where when you are in the office, you take it off, and when you are out, you can turn it on.
    Is this possible, and if so, how do I do it, and what do I need to tell my company's IT person? I don't want to be carrying 2 smart phones (Blackberry for work, iPhone for personal use).
    Thanks,

    The only problem will be when replying or forwarding a work email with your personal email account, which will be sent with your personal email account/address.
    This can't be set up with the iPhone - this must be set up at the server for the email account to be forwarded to another email account.
    Is your work account an Exchange account? If so, I'm not sure if an Exchange account supports being forwarded to another email account, and this would need to be turned on at the server at work every day at a designated time and turned off at a designated time in the morning.

  • Site redirects to Adobe Site on iPhone and iPad

    The Site that I made with Edge Animate redirects to Adobe's Site (adobeDotCom) on the iPhone and iPad
    Is Edge Animate trying to tell me something?

    Thanks, but it was my mistake. I inadvertently pasted this line of code into my browser-detect:
    window.open("http://www.adobe.com", "_self");

  • Can iPhone Mail redirect mail to subfolders like the Apple desktop Mail app

    In my Mail app on my computer, I have Rules set up so that certain emails from various people get moved to a few different subfolders I have set up. However, in my iPhone, they all come to my primary email address. Is there any way to make iPhone mail behave and redirect certain emails to subfolders? I belong to a few beta test groups and the amount of email is staggering, so I've rather have these emails redirected. Any advice? Thanks.

    No - the iPhone does not include a rules feature to sort recieved messages by category, and you can't create mailboxes with the iPhone's Mail client. The iPhone's Mail client is a compliment to the email client used on your computer for accessing the account, not a replacement for.
    With an IMAP account along with storing all user created mailboxes on the server for sorting recieved messages by category, all server stored mailboxes will be available with the iPhone's Mail client and kept synchronized with the server automatically with each email client used to access the account. If you keep the Mail.app on your Mac launched and running, any sorting of received messages to user created server stored mailboxes based on rules with the Mail.app on your Mac will be reflected automatically when accessing the account with the iPhone's Mail client. This is not possible with a POP account.

  • Iphone google redirect virus

    I have iPhone 4S and using chrome app. Google recently give me a lot of problem, it redirect to me to some website I never heard before such as http://corp.kaltura.com/. It was different website couple days ago. I tried on Safari, both app will have problem at the same time. If I can use google, Safari and chrome will both work, if google has problem, both will have problem (google only). I tried on search box or type google.com, clear all the histories and cookies. Could not solve problem.
    Sometimes turn off the iphone then turn it back on will temperately solve the problem, but it come back again. Yahoo search engine has no problem at all. Anyone know how to fix that
    PS: sometimes I get google authentication requirement, but this redirect issue is not link to that. They are happen at two different times

    I've had the same problem all year. I've reset my router, changed the DNS to OpenDNS, cleared the iPhones, and iPads caches & histories etc. The problem still occurs intermittently. 
    It always effects all iOS devices on my wifi network but never the desktop macs or PCs.  Changing over to cell phone data fixes it, changing back to wifi causes the problem again.  Sometimes Safari on the iPhone will redirect www.google.com, or a search in the upper right google box, to a blank page that says "Hello World!" other times it redirects to an error page, other times it redirects to a Yahoo! developer's page full of code. Usually it fixes itself within 20 minutes but sometimes it does this for several hours. Rebooting the phone or iPad doesn't fix the problem either.
    Any other ideas?

  • IPhone 4 having trouble connecting to wifi with redirect

    Hi all,
    I was wondering if someone out there can help me.  I have an iPhone 4 running 5.0.1.  Ever since i upgraded to iOs 5, i have noticed trouble connecting to the wifi at work.  At home and school the phone connects perfectly.  At work we have a redirect page.  When going under safari it just uses my mobile network (which is not that strong).  I check the wifi menu and it seems as if it is "trying" to connect...it shows the grey pinwheel spinning next to the correct netowrk but nothing ever happens.  I try to "renew lease", i turn off wifi, i reset the phone.  Sometimes it connects first try.  Other times it takes HOURS.  I assumed maybe it was just the network, so i attempted to try to connect my nook, and the nook connects right away.  I never touched any settings, but i am very confused on to what may be going on here to explain the type of problem i am having since iOs 5.  Thank you in advance.
    Jenn

    You'll need to provide complete details before anyone will be able to offer suggestions.
    For future posts, please don't put a lot of excess characters in the subject line. Just a brief summary of the problem - e.g. "iPhone 3GS with iOS 5.01 cannot connect to WiFi" - will be sufficent. I've asked the Hosts to edit out the superfluous junk.
    Regards.

  • Everytime I try to use iTunes on my iPhone 5 I'm getting the message too many HTTP redirects!! I have tried everything to stop this as I can't use iTunes on my phone HELP!!!!!

    Everytime I try using iTunes on my iPhone 5 I keep getting the message appear Too many HTTP redirects HELP !!!!!

    Basic troubleshooting steps clearly outlined in the User Guide are restart, reset, restore from backup, restore as new device.
    Have you tried ALL the recommended troubleshooting steps yet?

  • When I try to actualize my apps it redirects me to the app itself and it won't actualize it and I don't know what to do, now all my apps are stuck but in my iPhone works well SOMEONE HELP ME :(

    When I try to actualize my apps it redirects me to the app itself and it won't actualize it and I don't know what to do, now all my apps are stuck but in my iPhone works well SOMEONE HELP ME

    What do you mean by, "actualize"?

  • CLamXav found the Worm.Redirect-1 virus in an app on my iPhone during a backup. What now?

    During a recent encrypted backup of my iPhone 4S to my Mac Mini, ClamXav found the Worm.Redirect-1 virus in my Ask Dave, Mac Reference app, which I did happen to open last week. It quarantined the app to the folder I have set up and I have since deleted the app from my iPhone, iPad, iTunes and I have also hidden it from my list of purchased apps in the app store. I have backed up my iPhone once since then, and nothing else has shown up. Interestingly, I did a hard reset on my iPhone last night and I noticed a reference to the app in the sys.log, but I didn't catch which process made the call to it. The only visible reference to the virus since then is from the daily ClamXav scans which finds the app in my Trash folder, where I have since moved it.
    So, I'm not sure what may have happened to my iPhone, iPad, Mac Mini, or anything else I have attached to my home network, as a result of this virus. Any thoughts on what I should do now?

    JimmySD wrote:
    I suppose that's good news, since my iPhone is not jail broken. Though I would like to know how it not only got into the app, but how it also got into the App Store too. Should I contact Apple and the developer to let them know about this?
    It can't hurt.
    The signature is specific, although I suppose it's possible to be found in a false positive:
    TARGET TYPE: ANY FILE
    OFFSET: *
    DECODED SIGNATURE:
    On{WILDCARD_ANY_STRING(LENGTH<=10)}RewriteCond^%{HTTP_REFERER}{WILDCARD_ANY_STRI NG(LENGTH<=30)}RewriteCond^%{HTTP_REFERER}{WILDCARD_ANY_STRING(LENGTH<=30)}Rewri teCond^%{HTTP_REFERER}{WILDCARD_ANY_STRING(LENGTH<=30)}RewriteCond^%{HTTP_REFERE R}{WILDCARD_ANY_STRING(LENGTH<=200)}RewriteRule^.* http://
    I substituted "^" for spaces to prevent this entry from being identified as infected.
    It's a relatively old definition, added 12 Mar 2009 associated with three Trojans.
    Submission-ID: 7141005
    Sender: Anonymous
    Added: Worm.Redirect-1
    Added: Trojan.FakeAV-80
    Added: Trojan.BHO-4408
    Added: Trojan.FakeAV-81
    I concur with everybody else that it's unlikely this could harm your iPhone. I can guess that the original purpose was to redirect a browser to a command and control web site that would attempte to download one or more of the Trojan's listed. In 2009, practiacally all Trojan's were being written for use on a Windows computer, but of course it's possible the code could have been re-used and adapted for a different use today.

  • IOS application is redirecting to app store after run in iphone

    My iOS application run successfully in simulator. But when i try to run it in my iphone, app is opening and after few seconds redirecting to tictoc messenger's page in app store like advertising. It was running succesfully and i didn't do any changes in my code. My code includes single web view and pushbots. In the code side nothing can redirect.

    Ask in the developers forum.

Maybe you are looking for