Mobile app version of vmapp.org
Login or Join
Bryan171

: Deliberately reducing the rank of certain pages in my website I run a forum like website and I would like to make certain pages in it appear less prominently in Google search results. Is there

@Bryan171

Posted in: #GoogleSearch #Seo

I run a forum like website and I would like to make certain pages in it appear less prominently in Google search results. Is there a way to inform Google that I consider some pages to be less important than some other ones?

Specifically, there are some situations I have 2 different pages containing similar information that I want both to be indexed by Google, but I would also like to ensure that the first one appears above the second one in Google searches.

Edit: As to why I would want something like that, imagine that you had a website with information about geographical places (e.g. cities, states, countries, etc), having one page per place. Then you might want the page about New York state to have higher rank than the page about New York City, e.g. because the state is a larger entity than the city. The problem is that both places are called "New York" and that will confuse Google.

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Bryan171

2 Comments

Sorted by latest first Latest Oldest Best

 

@Eichhorn148

The best way to get the appropriate page to rank for any particular query is to target that page to what users are actually looking for.

Let's take your example of "New York". You have two pages for it:




New York

New York is the third largest state in the US. It has...





New York

New York is the largest city in the US. It has...




You say you want your state page to rank better when the user searches for "New York". You think that this would be appropriate because New York State is larger than New York City. However, Google ranks pages for a query based on user intent. Some users that search for "New York" may be looking for information about the state, but many more are probably looking for information about the city. Still other may be looking to find out why the two are named the same thing. Google usually ranks the page that more people are looking for first. It uses click through rate "CTR" to determine which of the pages on your site actually match the query better. If people are looking for the NYC page, Google tries to make them happy.

You can help by differentiating your pages. Especially the page titles:




New York State (NY) Geography - MyBrand

New York is the third largest state in the US. It has...





New York City (NYC) - MyBrand

New York, NY is the largest city in the US. It has...




Clarifying in the title what the page is about really helps users. They won't have to click into the page to find out if it is the one they are looking for. They will know before they click.

Putting full information into the titles can also help the pages rank for a variety of queries. There are a ton of things that users may actually be searching for that your page could answer:


new york
new york city
new york state
ny
nyc
new york, ny
new york geography
new york size
new york mybrand


Google is generally very good about getting the correct page to come up for each of these queries when you describe the page in the page title appropriately for users. When Google is getting it wrong, think about what users are actually looking for and try to describe it better for them so they click on the right thing. In many cases user intent may not be clear. In some cases it might be an opportunity to write a new article addressing any confusion:




Why Do New York State and City Have the Same Name?

New York was named in....

10% popularity Vote Up Vote Down


 

@Samaraweera270

You can not enforce a page to appear over another one in Google, you can only suggest to Search Engines that you think one page is more important that another one.

Using the sitemap protocol. The priority tag definition states:


The priority of this URL relative to other URLs on your site. (..)
it only lets the search engines know which pages you deem most
important for the crawlers.

Please note that the priority you assign to a page is not likely to
influence the position of your URLs in a search engine's result pages.
Search engines may use this information when selecting between URLs on
the same site, so you can use this tag to increase the likelihood that
your most important pages are present in a search index.


So you will simply have to add both pages to the sitemap and specify one with higher priority than the other one.

If you have two pages with similar content, there is a high chance that they can be categorized as duplicate content, using the priority tag would increase the likelihood that the one you specify as more important be present in SERP when looking for something present in both pages.

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://www.example.com/</loc>
<lastmod>2005-01-01</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>http://www.example.com/catalog?item=74&amp;desc=vacation_newfoundland</loc>
<lastmod>2004-12-23T18:00:15+00:00</lastmod>
<priority>0.3</priority>
</url>
</urlset>

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme