Forum Moderators: phranque
Even if Google doesn’t bust them, what if they switch maintenance to another developer; they find your hidden link and tell ABCDE. That is also bad for your rep.
Honesty is probably the best and the safest.
Have you asked to have a small link just on their contact page?
I really dont mind about any factor that isnt Google. I was thinking about this alternative:
/sys.css with:
a.copyright { display: none; }
/robots.txt with:
User-agent: *
Disallow: /sys.css
/index.php with:
...
<a href="http://www.abcde.com/" class="copyright">ABCDE</a>
</body>
</html>
-- OR --
/index.php with:
...
<a href="http://www.abcde.com/" id="copyirhgt">ABCDE</a>
<script>document.getElementById('copyright').style.display = 'none';</script>
</body>
</html>
Do you think any of this alternatives could work?