ScrapeBox Forum
How to find out internal links to a particular page? - Printable Version

+- ScrapeBox Forum (https://www.scrapeboxforum.com)
+-- Forum: ScrapeBox Main Discussion (https://www.scrapeboxforum.com/Forum-scrapebox-main-discussion)
+--- Forum: General ScrapeBox Talk (https://www.scrapeboxforum.com/Forum-general-scrapebox-talk)
+--- Thread: How to find out internal links to a particular page? (/Thread-how-to-find-out-internal-links-to-a-particular-page)



How to find out internal links to a particular page? - donorkeb - 09-15-2015

lets say we've got a page: www.great.com/awesome

I want to know which internal pages from my www.great.com site have links to www.great.com/awesome

is there a way to accomplish this with SB?

thanks and great to be part of this forum


RE: How to find out internal links to a particular page? - loopline - 09-19-2015

You would need a list of all the pages on great.com but as long as you had that you could make a simple mask in the page scanner addon and it would scan thru all the pages and then tell you which ones had the great.com/awesome link on it.

If you don't have a list of the pages you do a site:great.com search and then also do a grab links by crawling a site option - and then mash them together and remove duplicates.


RE: How to find out internal links to a particular page? - donorkeb - 09-20-2015

thanks loopline, very helpful

the simple mask in the page scanner.... could you elaborate a little further? would it be something like:

Code:
<a title="awesome link" href="http://www.great.com/awesome">awesome link</a>



RE: How to find out internal links to a particular page? - loopline - 09-20-2015

Yes sure, or even just


href="http://www.great.com/awesome"

Your looking for minimum effective dose. How small of a footprint can you use without getting a bunch of false positives because it could match more then 1 thing. The smallest footprint that is unique enough to give you what you want.


RE: How to find out internal links to a particular page? - donorkeb - 09-20-2015

excellent, thanks again, really helpful


RE: How to find out internal links to a particular page? - loopline - 09-25-2015

Your welcome. Cheers!