redirect url question

6 replies
How do I accomplish this...

I want to link mobile users to a mailchimp subscription page but I want to do it via my domain. Mostly because its a lot easier to type than the urls one gets from mailchimp but also because it's a catchy domain name to use.

eg.

A mobile user will type mydomain.com/businessname into their mobile browser but the page that will be displayed is mailchimp.com/that-business-subscription-form

Anyone?
#question #redirect #url
  • Profile picture of the author Cram
    you could always iframe the mailchimp form?
    Code:
    <iframe src="http://mailchimp.com/that-business-subscription-form"></iframe>
    or have it redirect, create a index.php plug in your mail form and upload it mydomain.com/businessname

    Code:
    <?php
    
       header( 'Location: http://mailchimp.com/that-business-subscription-form' ) ;
    
    ?>
    {{ DiscussionBoard.errors[7985348].message }}
  • Profile picture of the author galihkartiwa
    my suggestion, you can use the user agent reader, to ensure that the visitor accessing your site via a mobile phone.
    {{ DiscussionBoard.errors[7996026].message }}
  • Profile picture of the author l23bc
    Cram Hit the nail on the head But as Enfusa Said i would use Pretty links depending if its a WP site of course
    Signature

    No Link here or Nothing to Promote Just a Old Happy Warrior User reading Topics

    {{ DiscussionBoard.errors[7996068].message }}

Trending Topics