Is there anyway to redirect site to blogspot blog??

Discussion in 'Blogging' started by boredgames, Nov 27, 2008.

  1. #1
    I no that you can redirect a blogspot blog to a website but can you do it the other way round as I want hammersfooty.info redirected to hammersfooty.blogspot.com

    Thanks :)
     
    boredgames, Nov 27, 2008 IP
  2. dc0ded

    dc0ded Well-Known Member

    Messages:
    1,071
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    130
    #2
    You can put a simple html page with redirect code on hammersfooty.info.. to redirect to blogspot blog.
     
    dc0ded, Nov 27, 2008 IP
  3. nshadab

    nshadab Well-Known Member

    Messages:
    1,120
    Likes Received:
    22
    Best Answers:
    0
    Trophy Points:
    185
    #3
    If you want to redirect domain.com to www.domain.com or any other domain in general you can do the following:

    * Let's assume you want to redirect domain.com to www.domain.com
    * In the control panel, create a "Static/CGI/PHP" app, called "redirect" for instance
    * In the control panel, create a website record to mount the "redirect" app on "http://domain.com"
    * SSH into the server and create a file $HOME/webapps/redirect/.htaccess with the following content:

    RewriteEngine on
    RewriteCond %{HTTP_HOST} !^www\.domain\.com$ [NC]
    RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]

    You can use this method to redirect any domain to any other domain.
     
    nshadab, Nov 27, 2008 IP
  4. nshadab

    nshadab Well-Known Member

    Messages:
    1,120
    Likes Received:
    22
    Best Answers:
    0
    Trophy Points:
    185
    #4
    And here is another method to redirect one domain to another, assuming that at blogspot you dont have HOSTING PANEL:

    PHP and HTML redirects

    If you do not wish to use the .htaccess file to redirect your visitors, you can use another option - a PHP or an HTML file which will perform the actual redirection. Below are examples for both programming languages:

    * For PHP, create a file (index.php for example) and add the following lines in it:


    <?php
    header( 'Location: http://www.yoursite.com/redirect_location' ) ;
    ?>

    * For HTML, create a file (index.html for example) with the following content:


    <META HTTP-EQUIV="Refresh"
    CONTENT="0; URL=http://www.yoursite.com/redirect_location">

    Here you have the option to delay the redirect by increasing the CONTENT variable. For example CONTENT=5 will delay the redirect for 5 seconds.
     
    nshadab, Nov 27, 2008 IP
  5. boredgames

    boredgames Active Member

    Messages:
    1,273
    Likes Received:
    66
    Best Answers:
    0
    Trophy Points:
    90
    #5
    I don't have any hosting on my hammersfooty.info so I can't copy a code on to that site to redirect to my blogspot blog.
     
    boredgames, Nov 27, 2008 IP
  6. m_wc

    m_wc Well-Known Member

    Messages:
    857
    Likes Received:
    22
    Best Answers:
    0
    Trophy Points:
    125
    #6
    agree with nshadab ...

    Create an index.html file on hammerfooty.com and place following code in between header tags.

    <META HTTP-EQUIV="Refresh"
    CONTENT="0; URL=http://hammersfooty.blogspot.com">
    Code (markup):
     
    m_wc, Nov 27, 2008 IP
  7. boredgames

    boredgames Active Member

    Messages:
    1,273
    Likes Received:
    66
    Best Answers:
    0
    Trophy Points:
    90
    #7
    Don't you need to have hosting though to upload the index.html file
     
    boredgames, Nov 27, 2008 IP
  8. dc0ded

    dc0ded Well-Known Member

    Messages:
    1,071
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    130
    #8
    yes ofcourse u need hosting to host your index page.. U can use sites like awardspace.com which offer 100% ad free web hosting.
     
    dc0ded, Nov 27, 2008 IP
  9. harrisunderwork

    harrisunderwork Well-Known Member

    Messages:
    1,005
    Likes Received:
    21
    Best Answers:
    0
    Trophy Points:
    135
    #9
    harrisunderwork, Nov 27, 2008 IP
  10. boredgames

    boredgames Active Member

    Messages:
    1,273
    Likes Received:
    66
    Best Answers:
    0
    Trophy Points:
    90
    #10
    boredgames, Nov 27, 2008 IP
  11. harrisunderwork

    harrisunderwork Well-Known Member

    Messages:
    1,005
    Likes Received:
    21
    Best Answers:
    0
    Trophy Points:
    135
    #11
    On my side , both are working alike. :)
     
    harrisunderwork, Nov 27, 2008 IP
  12. caj

    caj Active Member

    Messages:
    748
    Likes Received:
    13
    Best Answers:
    0
    Trophy Points:
    75
    #12
    here a simple html redirect solution I often used

    <META HTTP-EQUIV="Refresh"
    CONTENT="0; URL=http://www.yoursite.com/redirect_location">

    save the file as an html file. upload that to your hosting. done
     
    caj, Nov 27, 2008 IP
  13. webcrawl

    webcrawl Banned

    Messages:
    130
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    55
    #13
    thanx friends it worked for me...
     
    webcrawl, Nov 27, 2008 IP
  14. mentos

    mentos Prominent Member

    Messages:
    15,280
    Likes Received:
    473
    Best Answers:
    0
    Trophy Points:
    330
    #14
    There no problem,you can chose a free web host and use the redirect method.
    And the hosting cost is free
     
    mentos, Nov 27, 2008 IP
  15. cenfos

    cenfos Peon

    Messages:
    116
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #15
    thanks i was also searching for this info...
     
    cenfos, Nov 27, 2008 IP
  16. harrisunderwork

    harrisunderwork Well-Known Member

    Messages:
    1,005
    Likes Received:
    21
    Best Answers:
    0
    Trophy Points:
    135
    #16
    Why u people are buying hosting when u can easily redirect to blogger by entering the google name server.

    Check my above link.
     
    harrisunderwork, Nov 28, 2008 IP