no-follow external links

edited May 2010 in General
How to make all external links as no-follow?

Comments

  • you cant at this time.
  • @aric that`s a pity... that`s why identi.ca PageRang went down from 6>0 ?

    any hardcoding now possible?
  • @macc, I see identi.ca's page rank at 8.
  • @evan you`re right, it`s 8! My mistake, sorry (I looked into my profile page on identi.ca)
  • So, what was your question again? Something like, "How are you managing your site so well that you have PR 8?"
  • @evan yes, it's a correct question... :-)
  • So you want do-follow links on your StatusNet website?

    Try adding the following to the end of your config.php ...

    // Start Custom SEO Modifications for config.php by www.mattwilborne.com
    function AddMetaKey($action){
    $action->element('meta', array('name'=>'keywords', 'content'=>'YOUR_KEYWORDS'));
    $action->element('meta', array('name'=>'description', 'content'=>'YOUR_DESCRIPTION'));
    $action->element('meta', array('name'=>'robots', 'content'=>'index,follow'));
    return true;
    }
    Event::addHandler('EndShowHeadElements', 'AddMetaKey');
    // End Custom SEO Modifications for config.php by www.mattwilborne.com

    // Good luck with your modifications! Thanks, Matt Web Design Chicago
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Google Sign In with OpenID