Mobile app version of vmapp.org
Login or Join
Fox8124981

: 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

@Fox8124981

Posted in: #Nofollow #Php #Seo

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>

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Fox8124981

1 Comments

Sorted by latest first Latest Oldest Best

 

@Phylliss660

<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.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme