Re: how to add rel="nofollow" to all links

2013-04-18 Thread Korbinian
rel="nofollow" will tell to not weight it but google will still go it - a way to stop this is by doing a robots.txt e.g.: User-agent: * disallow: /*?wicket for wicket 1.4 does the trick, in your case User-agent: * disallow: *ILinkListener* might work - can test this with the google webmaster

Re: how to add rel="nofollow" to all links

2012-10-30 Thread Martin Grigorov
if (component instanceof Link) { > component.add(AttributeModifier.append("rel", > "nofollow")); > } > } > > } > > Best regards, > Decebal > > > > -- > View this message in context: > http://apache-

Re: how to add rel="nofollow" to all links

2012-10-30 Thread Decebal Suiu
instanceof Link) { component.add(AttributeModifier.append("rel", "nofollow")); } } } Best regards, Decebal -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/how-to-add-rel-nofollow-to-all-links-tp46534

how to add rel="nofollow" to all links

2012-10-30 Thread danisevsky
Hi, when I look on my site (Brix and Wicket 6 application) in the google webmasters tools I see 300 thousands of wrong urls. All of them are from links (contains ILinkListener). So I would like to ask you if it would make sense to add attribute rel="nofollow" to all wicket links? If so is there so