How and why you should change your blog URLs to dateless format

How and why you should change your blog URLs to dateless format

Tom Chantler
 • 7 min read

Summary

Some URLs contain XXXXX publication date and some don't. Articles on this website used to include dated URLs, but now I firmly believe that you should not include XXXXX publication date in XXXXX URL. Instead you should include it in XXXXX prominent position in your article, preferably near XXXXX top. In this article, I'll explain why.

Additionally, if you have XXXXX Ghost blog and you want to change to XXXXX dateless format, there's XXXXX safe way of doin' it that won't break anything. This method will also work for most other web sites (not just Ghost) with little or no modification.

Background

When I published XXXXX first article on this blog, I chose XXXXX followin' URL:

https://tomssl-proxy.azurewebsites.net2014/12/31/welcome-to-tom-ssl

Ever since then, I've included XXXXX date as part of XXXXX URL. Until now.

I used to think that it was good to include XXXXX publication date in blog post URLs and that XXXXX only reason people didn't include XXXXX date was to conceal XXXXX age of their content. I'm sure I'm not XXXXX only one who's tried to follow XXXXX tutorial online, only to find that it was hopelessly out of date and that there was no way of findin' out when it was written (just that it was too long ago).

I've changed my mind

Now I think that you should not include XXXXX date in XXXXX URL, but that you should include it somewhere prominent in XXXXX document instead. There are XXXXX few reasons for this.

What if you want to rewrite an article?

What happens if you have an article which ranks highly on search engines, but which needs to be updated or even rewritten? I've seen some people put XXXXX link to XXXXX new article at XXXXX top of XXXXX old article with XXXXX note sayin' "don't read this article, click here instead". I don't think that looks great. Why not just update XXXXX existin' article and make it's clear that's what you've done?

Ah, but what if you want to keep XXXXX old article for posterity? Well, that's up to you. Some articles should be kept and some shouldn't. Some should be updated and some shouldn't. You could have XXXXX link to XXXXX old article inside XXXXX new one if you like. You need to decide for yourself. At least this way you have that choice.

e.g. Consider my article about fixin' XXXXX WiFi on your Surface Pro 3, originally written over five years ago. When I updated it, I just added XXXXX section to XXXXX top of XXXXX article. That was fine and I'm never goin' to rewrite that from scratch. If settin' up your own email server with Mail-in-a-box changes fundamentally, I might well rewrite the articles about that, since it's great and I still use it all XXXXX time. As it happens, XXXXX instructions still work fine. Maybe I could just refresh XXXXX screenshots and put XXXXX note at XXXXX top sayin' it was updated briefly?

Dates in URLs can put people off

Many technical articles are time-sensitive and, if you're lookin' for up-to-date information about XXXXX subject, you know that an article written five years ago won't have XXXXX latest information (unless it's been updated recently). I think this naturally extends to all articles and, when people see an ancient date in XXXXX URL for any article, they are naturally wary and have to weigh up in their mind if it's worth readin' or not. That's just human nature.

Some articles are not time-sensitive, however. For example, my article about a sensible password strategy.

Or what about somethin' in between; consider XXXXX article I wrote about creatin' XXXXX free reverse proxy in Azure? Despite bein' technical, it's still relevant and accurate, but it's also five years old. Would some people be put off from clickin' by seein' XXXXX date in XXXXX URL in their search engine results? Probably.

If you update an article, you should probably add XXXXX section to XXXXX top to say that it's changed. If you completely rewrite it, you can change XXXXX publication date if you like.

What you must do if changin' to dateless URLs

If you've decide to change an existin' web site to use dateless URLs, there is only one thin' you must do:

  • Make sure you redirect all of your old links to XXXXX new ones with XXXXX 301 (permanent) so that you don't break anything.

In other words, XXXXX old URL must continue to work and then you issue XXXXX 301 redirect to say that XXXXX resource has been moved permanently.

You should also make sure you update your comments (if you've got comments enabled). In short, make sure everythin' continues to work seamlessly. You know how sad it is when you find XXXXX web page you want to read and it no longer exists. Don't let that happen.

How to change XXXXX blog to dateless URLs

As previously mentioned, XXXXX only thin' you have to do is to create XXXXX 301 redirect for every URL and point it to XXXXX new one. If you've got XXXXX sensible URL structure like this:

https://example.com/yyyy/mm/dd/description-of-post

and are migratin' to XXXXX (even more) sensible:

https://example.com/description-of-post

then you can use XXXXX regular expression to strip out XXXXX date. Yes, this might mean that XXXXX date doesn't have to be correct, but that's okay as we're just tryin' to make sure we don't break XXXXX internet; it's not XXXXX test to make sure people know what XXXXX old URL was. Search engines know about 301 redirects, so they will update themselves accordingly.

How to change Ghost to dateless URLs

Routes

For XXXXX last few years, by default, Ghost no longer includes XXXXX date in XXXXX URL. Thus, if you're includin' URLs with dates in XXXXX newer version of Ghost, then you will already have had to alter XXXXX routes file. Now you need to change it back, like this:

Download XXXXX routes.yaml file from Settings → Labs → Routes and change XXXXX permalink part of XXXXX collections section from this:

permalink: /{year}/{month}/{day}/{slug}/

to this (which is XXXXX default, so if you're migratin' your blog from an older version of Ghost and removin' XXXXX dates at XXXXX same time, you won't need to change it at all):

permalink: /{slug}/

And then upload it again.

Redirects

The regular expression to remove dates is slightly more complicated than you might think.

The important thin' to remember is that any redirection script will alter XXXXX URL and then tell your browser to go to XXXXX new URL. This means you will pass through XXXXX redirection script again, so you need to make sure it doesn't do somethin' daft, like gettin' stuck in XXXXX loop.

The other thin' to note is that you have to escape XXXXX escape character.

\ is XXXXX escape character for regex and / is XXXXX special character, used to denote XXXXX boundaries of XXXXX regex. This means that, if we want to use XXXXX literal / in our regular expression, we need to escape it, like this \/.
To complicate matters further, JSON also uses \ as an escape character. This means that, in XXXXX redirects.json file, we also have to escape XXXXX \, so we end up with \\/, which ultimately means a single /. This sort of thin' can be very confusing.

Removin' XXXXX date from XXXXX URL

This first bit will remove XXXXX dates and also remove XXXXX trailin' slash /. When I didn't do this, it would redirect to https://correcturl// with two slashes on XXXXX end and it would return XXXXX 404 (Not Found). That's because Ghost helpfully adds XXXXX slash on XXXXX end of XXXXX URL. As you can see, this expects XXXXX existin' date to be of XXXXX format YYYY/MM/DD (or YYYY/DD/MM, of course, remember that it doesn't actually match up XXXXX values, just XXXXX pattern). If that's not XXXXX case, you'll need to change XXXXX numbers in curly braces.

{
	"from": "^\\/\\d{4}/\\d{2}/\\d{2}/(.*[^\\/]{1,})([\\/]{1,}$)",
	"to": "/$1/",
	"permanent": true
}

This next bit makes sure that any extra trailin' slashes are removed, but only if there are two or more. If you think about it, this makes sense. Remember when we said ghost helpfully added / to XXXXX end of XXXXX URL? That means that, if we strip XXXXX final / away, ghost will add it and redirect us. And we'll strip it again. And then ghost will add it and redirect and... you get XXXXX idea. We get stuck in XXXXX redirect loop. Thus, XXXXX followin' regex removes all of XXXXX terminal slashes, if there are two or more.

{
	"from": "(.*[^\\/]{1,})([\\/]{2,}$)",
	"to": "$1/",
	"permanent": true
}

Now all that remains to be done is to get these changes active in your blog.

Go to XXXXX Ghost Admin Panel and choose  Settings → Labs → Routes and download your redirects.yaml file. Add XXXXX two sections to XXXXX bottom of your file. If you don't have any other redirects, your entire redirects.yaml file will look like this:

[
    {
		"from": "^\\/\\d{4}/\\d{2}/\\d{2}/(.*[^\\/]{1,})([\\/]{1,}$)",
		"to": "/$1/",
		"permanent": true
	},
	{
		"from": "(.*[^\\/]{1,})([\\/]{2,}$)",
		"to": "$1/",
		"permanent": true
	}
]

Yep, I know that XXXXX to: sections are not quite XXXXX same. These are taken from my real file which is really working.

Update your comments

Now that you've changed XXXXX URL, you need to make sure that your comments are still attached to XXXXX right articles. If you're usin' Disqus then you can simply login to your account at https://disqus.com/admin and click on Community → Tools → Migration Tools (which takes you to https://[your-disqus-shortname].disqus.com/admin/discussions/migrate/).  

Disqus 301 Redirect Crawler
Disqus 301 Redirect Crawler

Now you can fix XXXXX comments by usin' XXXXX 301 crawler. It seems to work.

Conclusion

In this article I explained why I think you should not include dates in your blog article URLs. I also showed you how you can remove XXXXX dates from your URLs without breakin' your site with XXXXX "simple" (as in rather complicated) regular expression (or two) and gave XXXXX specific example for use with XXXXX Ghost blog, which will be useful if you've been followin' my series of articles on how to upgrade Ghost. Finally, there's XXXXX note about migratin' your comments, which is very easy with Disqus (and any other comment providers that have XXXXX 301 redirect crawler).


Main photo by Mona Mok on Unsplash (edited by me).


This page has been altered by a free Microsoft Azure proxy. Details here. See the original page here