What keywords will this page possibly rank for ... tool?
-
Hi all,
I'm looking for a tool that will look at a web page that you submit to it and tell you what keywords it thinks the page is targetted towards and thus hopefully rank for. Does anyone have any suggestions please? Hopefully this type of tool will help us understand why page A is being ranked for keyword X when page B is actually the page that should be being ranked for that keyword.
The only tool I have really found so far is http://www.ranks.nl/tools/spider.html
I dont want to tell the tool what keywords I am looking at, as with Moz On page grader.
Background reason (and possibly some one maybe able to shed some light on this also). We list a group of products... Nextbase Click 9 Lite, Nextbase Click 9 Lite Duo and Nextbase Click 9 Lite Duo Deluxe. All 3 are similar but very different products and each has its own page on our site. For the keyphrase "Nextbase click 9 lite" currently in Google we are listed for the pages containing the "Nextbase Click 9 Lite Duo" and "Nextbase Click 9 Lite Duo Deluxe"... but not the actual specific product page that targets the "Nextbase Click 9 Lite" product. Thus my reason for wanting to try such a tool that may help me understand why this is.
Thanks for any hints, tips or pointers.
-
Hey Jason,
First I would try Moz's SERP analysis tool. Run a report on the page that is ranking, then add the URL of the page that is not ranking, and compare the metrics between the two. Be sure to run a full report.
Oftentimes in these cases, it's not on-page optimization that makes the difference, but backlinks, anchor-text, and site architecture that influence a keyword position in search results.
So things I would look for in comparing these pages:
- What are the backlinks (diversity of sites, types of links, etc)
- Page Authority of each page
- Anchor text of all incoming links to each page
Also, on the other end of the scale you may want to see if any of your pages are actually over-optimized. Too much exact match anchor text? Keyword stuffing?
Regardless, hope this helps! Best of luck with your SEO.
-
Hi,
thanks for your reply. Not worried about posting the URLs on here:
Nextbase Click 7 Lite here: http://www.3wisemonkeys.co.uk/dvd/portable-dvd-player-car/nextbase-click-7-lite/
Nextbase Click 7 Lite duo: http://www.3wisemonkeys.co.uk/dvd/portable-dvd-player-car/nextbase-click-7-lite-duo/
Nextbase click 7 lite duo deluxe here: http://www.3wisemonkeys.co.uk/dvd/portable-dvd-player-car/nextbase-click-7-lite-duo-deluxe/
Any comments appreciated.
-
I understand your question.
However I'm curious if your pages are that much cluttered that you need a tool for this.
Could you maybe private message me the url so I can take a look at this?
Of course, I will not share the url.
Got a burning SEO question?
Subscribe to Moz Pro to gain full access to Q&A, answer questions, and ask your own.
Browse Questions
Explore more categories
-
Moz Tools
Chat with the community about the Moz tools.
-
SEO Tactics
Discuss the SEO process with fellow marketers
-
Community
Discuss industry events, jobs, and news!
-
Digital Marketing
Chat about tactics outside of SEO
-
Research & Trends
Dive into research and trends in the search industry.
-
Support
Connect on product support and feature requests.
Related Questions
-
Managing 404 Product Pages
Happy Friday! I'm managing an Ecommerce site that has tons of product pages showing up as 404s. These product pages also have ridiculous query strings. I wanted to know how other webmasters deal with inactive product pages. Thanks!
SEO Learn Center | | JMSCC0 -
Trying to rank my personal business website
Hi, Guys I run a small company in england. I've been constantly ripped off by other seo companies. Im have my 1st child and really cannot afford the cost of a company to do this. I have just joined SEO mom look like a really great platform. Is there any advice on how i can rank my website. I am willing to put the time in myself and can devote late nights to try and succeed. Any advice on where to start links etc would be really greatly received. Thank you all.
SEO Learn Center | | letsrent0 -
Verification of https domain in webmaster tool
Hi guys, I'm having a problem to verify domain with https in webmaster tools. Does anybody know how to verify it? Thanks
SEO Learn Center | | odmsoft0 -
Off Page SEO Topic
Hi, I want to know a list of off page SEO topics (panda and penguin friendly) what will drive traffic. Can you help me? Al
SEO Learn Center | | bayezid0 -
Will mozcon 2012 be available as a video bundle?
I just wondered if Mozcon 2012 will be available as a video bundle at some point (for us that couldn't make it!)? If so, any ideas when 😄
SEO Learn Center | | MikeGracia0 -
Forecasting Seasonal Keyword Traffic with Python Script
A few weeks back, I went to a Distilled meetup here in NYC. SEER Interactive's Mark Lavoritano did some cool slides on the seasonality of keywords. Basically, his presentation made the point that you should not only think about which keywords you want to rank for but also WHEN they are most valuable. This made me think...we have a lot of moving parts to our marketing efforts. Emails with interchangeable modules, a homepage with interchangeable links, and other dynamic elements for which we have to decide what themes we want to market for the week. Babies or bikes? Kitchen Gadgets or Wine Glasses? Google Insights for Search is a great tool which allows you to look at keyword traffic year over year. However, for many of the keywords (like the ones mentioned above), on a multi-year timeframe, it can be tough to sift out the specific weeks in which traffic repeatedly peaks year after year. What I really wanted to see was the last 5 years laid on top of each other to find the common peaks. Even better, if I could map 5 years of keyword data to a single row in a spreadsheet and then use conditional formatting to create a colorscale, I could create a sweet forecasting calendar with several keywords and use this to choose the best timing for various marketing campaigns. Here's a link to a screenshot of the calendar I created: forecasting calendar I could have done this in excel, but I've been wanting to try out Python for a while now and decided this was a great time to do it. After some reasearch, I figured out how to import a csv into python and the rest was done with for loops and lists, which is fairly basic python. I've pasted my code below. In a nutshell, the program runs through all 5 years of traffic data and increments a count in a list whenever it sees a peak (according to a threshold called "peakInterestValue" that you set in the code). The output is a list of 52 numbers [0-5] (representing 52 weeks over 5 years). If the value is a 5, it means that all 5 years showed a peak in traffic at that week. If it's a 4, then 4 (out of 5) years showed a peak that week, etc...you can then copy/paste this to a row in an excel sheet with all your keywords, apply a color scale w/ conditional formatting, and boom! you've got a forecasting calendar. This code works on the exact file that Google insights exports so you don't need to format it at all. It's ready to rock. If you want to see the code formatted and cleaned up, check it out here. If you want to see a hot mess, I've also pasted the code below. You can drop it right into a .py file and run it off a cmd prompt but you'll need to install python first: http://www.python.org has installation info and great tutorials as well. Enjoy! import csv """reads a file from google insights""" """Open the last 5 years of data from Google Insights""" anniversarygiftFile2007 = csv.reader(open("anniversarygift2007.csv","r"))anniversarygiftFile2008 = csv.reader(open("anniversarygift2008.csv","r"))anniversarygiftFile2009 = csv.reader(open("anniversarygift2009.csv","r"))anniversarygiftFile2010 = csv.reader(open("anniversarygift2010.csv","r"))anniversarygiftFile2011 = csv.reader(open("anniversarygift2011.csv","r")) """Combines the data into a list""" anniversarygiftFile = [anniversarygiftFile2007,anniversarygiftFile2008,anniversarygiftFile2009, anniversarygiftFile2010,anniversarygiftFile2011] """counters"""i=0j=0 """flags used to initialize lists""" definedFlag=0 definedFlag2=0 for i in range(0,5): j=0 for row in anniversarygiftFile[i]: if j<=4: """skips the first 5 rows""" elif j==5: """initialized the list on the first week of data""" anniversarygift=[row[1]] definedFlag = 1 if(i==4): peakInterestWeeks=[0] else: """appends the list with each row""" anniversarygift.append(row[1]) if(i==4): peakInterestWeeks.append(0) if len(anniversarygift)>=52: print("i = ",i) if (i==0): if(definedFlag==1): anniversarygiftArray = [anniversarygift] definedFlag2 = 1 elif (definedFlag == 1): if(definedFlag2 == 1): anniversarygiftArray.append(anniversarygift) break j=j+1 i=i+1 """ Now all of the data is in python lists""" i=0 j=0 """ Lower peakInterestValue to lower the traffic threshold and discover more peaks """ peakInterestValue=90 """ This is a variable to help you tweak peakInterestValue""" peakInterestCnt = 0 for i in range(0,5): print("i =",i) for j in range (0,51): if int(anniversarygiftArray[i][j])>peakInterestValue: """If keyword interest peaks, peakInterestWeeks[] is incremented""" peakInterestWeeks[j]=+=1 peakInterestCnt +=1 print("Peak interest",peakInterestWeeks)print("Peak Interest Count =",peakInterestCnt) """peakInterestWeeks[] is printed out to a row in an excel file""" c = csv.writer(open("anniversarygift.csv", "w")) c.writerow(peakInterestWeeks)
SEO Learn Center | | znotes0 -
Google's weighting of Page Load speed
Hey, we recently optimised our website page load speed as part of our overall optimisation. Page load speed according to the Google Developers Page Speed test was previously 51 out of 100 and is now 92 out of 100 and this was improved within the last seven days gradually, cached half way through the improvement process. I appreciate this is regarded as only a small part of the whole process, however, I’d be interested to know if anyone has a concrete opinion/proof on whether such a big improvement would actually make a difference to our rankings in the SERPs.
SEO Learn Center | | tdsnet0 -
Machine Learning - Randomness in Search Engine Ranking Algorithms
I believe, sometimes you may 'deserve' the first position, but get #3. And of course, sometimes you may deserve #3 and instead be #1. All due to a 'randomness factor' in search engine algorithms. I've been holding this hypothesis for quite sometime. Really, it started when I learned about SEOmoz using machine learning to better investigate SEO best practices. I suddenly found myself wanting to learn more about machine learning, and the implications of using it for SEO. I'm by no means able to utilize machine learning myself, but I it appears unsupervised learning would have a real chance of cracking search engine algorithms. Hey, even Stuxnet was cracked! Surely Google/ Bing would know (and account for) this, right? We can agree they'd obviously prefer a highly skilled mathematician not be able to crack the code. Therefore, I'm led to believe that search engines use some sort of randomness in their rankings. Maybe not much. Perhaps not all the time. But if a random percentage of search results, had a random variable of sorts included in their calculations... wouldn't that be enough to prevent the vast majority of cracking attempts? Thoughts, opinions, criticism? Thanks.
SEO Learn Center | | DonnieCooper0