Forum Moderators: martinibuster
I was thinking on a 10000 page site of having a different link on evey 10th page that does not rotate. The links would all be static but there would be 10 different sets of anchor pointing to the same page.
From a logical point of view, why would there be 10 sets of INTERNAL keywords pointing to 1 page? Inbounds, yes because people would link to a page with different keyords naturally.
If someone has done the labwork I would be gratetful if you could share.
Depending on the technology you use on your site, you probably can do it in many ways.
For example you could check the file lenght (i.e. /contactus.asp would be 14), and depending on that number, use a certain anchor text.
rough example in asp:
<%
dim file, filelenght
file = Request.ServerVariables("URL")
filelenght = Len(file)
If filelenght>0 and filelenght <=10 then
response.write "<a href = index.asp>Red Widgets</a>"
elseif filelenght >10 and filelenght <=15 then
response.write "<a href = index.asp>Blue Widgets</a>"
elseif filelenght >15 and filelenght <=20 then
response.write "<a href = index.asp>Purple Widgets</a>"
else
response.write "<a href = index.asp>Yellow Widgets</a>"
end if
%>
You can add to the above for more anchors, change it, etc.
If you are pulling info from a database, most likely, the pages have a number (id) associated with them. Use this number to do something similar to the above.
Just an idea.