: How Do I Make A Dynamic PHP Link 'No-Follow'? I want to make the Footer links on my website 'No Follow'. How would I do it on these dynamic PHP links? <ul> <li><a href="<?=site_url('terms');?>"&g
I want to make the Footer links on my website 'No Follow'. How would I do it on these dynamic PHP links?
<ul>
<li><a href="<?=site_url('terms');?>">Terms</a>|</li>
<li><a href="<?=site_url('privacy');?>">Privacy</a>|</li>
<li><a href="<?=site_url('disclaimer');?>">Disclaimer</a>|</li>
<li><a href="<?=site_url('contact');?>">Contact</a></li>
</ul>
More posts by @Fox8124981
1 Comments
Sorted by latest first Latest Oldest Best
<ul>
<li><a href="<?=site_url('terms');?>" rel="nofollow">Terms</a>|</li>
<li><a href="<?=site_url('privacy');?>" rel="nofollow">Privacy</a>|</li>
<li><a href="<?=site_url('disclaimer');?>" rel="nofollow">Disclaimer</a>|</li>
<li><a href="<?=site_url('contact');?>" rel="nofollow">Contact</a></li>
</ul>
The fact that the URL is dynamic is irrelevant, as the rel attribute is separate.
Terms of Use Create Support ticket Your support tickets Stock Market News! © vmapp.org2024 All Rights reserved.