Mobile app version of vmapp.org
Login or Join
Murphy175

: Why do these major ticketing sites have backward or flat URL structures? In basically any SEO post you read, or site you visit or develop, the recommended site structure is basically the same

@Murphy175

Posted in: #Seo #SiteStructure #Url

In basically any SEO post you read, or site you visit or develop, the recommended site structure is basically the same - the "tree" structure.

I can see why a site would want a flattened URL structure - it just looks better and is more user-friendly:

seatgeek.com/san-diego-padres-tickets www.ticketmonster.com/San-Diego-Padres-Tickets

Others apparently just somewhat flatten their URLs, but not all the way:

www.ticketcity.com/mlb/san-diego-padres-tickets.html https://www.vividseats.com/mlb-baseball/san-diego-padres-tickets.html


I am trying to figure out why, though, do other major ticketing sites do the exact opposite of the tree structure? I want to know if it's for SEO or some other reason (routing advantages from a programming perspective?)

www.stubhub.com/san-diego-padres-tickets/performer/581/ https://www.ticketmaster.com/San-Diego-Padres-tickets/artist/806014


Does anyone know if crawlers will give more weight to pages if they appear to be closer to the root of the domain? If not, I have no idea why this structure makes sense to all of these sites.

Could there be other driving factors that I'm not thinking of for structuring URLs like this?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Murphy175

1 Comments

Sorted by latest first Latest Oldest Best

 

@BetL925

The goal of a URL is not to mirror your site structure. There are four goals of good URLs:


Uniquely identify the content of the page
Be descriptive
Be memorable
Be permanent


Sites include a numeric ID in the URL because it works well with databases. The numeric id is a database key for the content. This site works that way. When that is the case, the only portion of the URL that generally matters much to the software running the site is that ID.

Any words that are added to make a URL descriptive are called the "URL slug". The webserver need to handle cases in which the slug changes. It either needs to redirect, or put canonical tags in the page for alternate URL slugs.

To be memorable, a URL needs to be very short with no numbers in it. The path should have only one, two, or three words. Most sites don't try go for memorable URLs these days because most users rely on search engines rather than typing in URLs.

A flat URL structure works very well because most sites don't need categories, especially nested categories, in the URL to uniquely identify or describe the page content. Categories also introduce additional permanence headaches. When the name of a category changes, many URLs would have to redirect when the category is in URLs.

It also seems to me that the guides that you are reading are out of date. A tree structure is no longer state of the art for web information architecture. Users prefer faceted navigation. That is, different users will have different criteria for finding the same products. To use your ticketing example, users might want to look for tickets by:


Category (sports, music, theater, etc)
City
Venue
Artist, team, or performer
Price
Popularity (big events or cozy events)


Websites may have multiple ways to navigate to the same product with different ways of starting out. Many sites implement multifaceted filters, usually in the left hand navigation. When using multifaceted navigation, the URL structure can't match the path the user took to get to the product because there are multiple paths to the same end.

As far as SEO goes, search engines put very little weight on the words in the URLs right now. Years ago, it was an important ranking factor, but these days it seems to make little difference. As long as URLs are unique and consistent, the presence of keywords seems to make little difference for rankings. Many sites ranking very well without any keywords in the URL. Putting keywords in the URL might give you a very slight SEO advantage. Putting those keywords near the front of the URL also might be a very slight SEO advantage.

If you do use a numeric id, it should go near the front of the URL. In my opinion this is far more important compared to putting keywords first. URLs often get truncated by email or when displayed to users. When the ID is at the front, it is easy for your web server to figure out where to redirect a truncated URL. Picking up a few extra backlinks that would otherwise end up on error pages because the link is truncated far outweigh the benefits of the keywords.

Another reason that URLs within an industry tend to be similar is that some site does it one way, becomes the industry leader, and everybody copies them. To some extent this works OK, because the leader isn't usually doing anything really bad from an SEO standpoint. It does mean that within a particular sector, many of the sites will share odd quirks that may not actually be helping them at all. My guess is that is the case for Stubhub and Ticketmaster. It really looks like one of the sites emulated the URL structure of the other.

Of your examples, the best URLs for SEO in my opinion are the SeatGeek URLs. They have the descriptive keywords. They don't have extra fluff. I could probably type them in. The even try to handle misspellings. If I change the spelling to "diago" in the URL they try to take me to an appropriate page (although their logic needs some work because it takes me to a page for 49ers tickets).

None of the example URLs you gave are "bad" for SEO. I'd say that each of them is good enough. Google is likely to rank those sites pretty equivalently as far as the URL itself goes. Other ranking factors are going to have much more impact than the URL.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme