Do I need to setup a redirect?

2 replies
I read somewhere that it is better to setup a redirect if I am using SEnuke to create a bunch of web 2.0 links? Is this true? What is the best way to do this? Please give good instructions, I am not very good at this

Thanks

Dave
#redirect #setup
  • Profile picture of the author corporation
    If you need it You can use 301 redirect from your own site (if run php: most do)
    simply make your links pointing to a page (or more) eg mykeywordsstuffedpage.php than, in that page, you put this simple code:

    <?php
    Header( "HTTP/1.1 301 Moved Permanently" );
    Header( "Location: http://www.YOURLANDINGLINK.com/etcetc" );
    ?>

    If you want to be more search engine friendly: this is the code for the .htacess file (you need your host support the mod rewrite not all do it) put it in a simple text file, rename the file and upload it to the root of your server (edit the bold field )

    RewriteEngine On
    RewriteBase /
    RewriteCond %{HTTP_HOST} !^name-domain\.com [NC]
    RewriteRule ^(.*)$ http://name-domain.com/$1 [L,R=301]
    Redirect /htaccess-url-redirect.html http://www.name-domain.com/index.html


    Hope this help.
    Ciao
    ENrico
    {{ DiscussionBoard.errors[1163067].message }}
    • Profile picture of the author Searchlabmedia
      Hey Thanks for the explanation.....but can you tell me in English?? LOL!

      Question: If I build 100 web 2.0 sites using senuke, and they all link to a redirect link, the sites will go to -------> site with redirect in it -------> then to the main money site, is that correct?

      Ok, does the main money site get the anchor text backlink from all of the 100 sites?

      Also, if I am doing this for multiple sites, do I need to set this redirect up on a different domain every time?

      This is where I get lost and confused.

      Thanks

      Dave
      {{ DiscussionBoard.errors[1163079].message }}

Trending Topics