Subscribe

Adding Netlify redirects to an Eleventy site

✍️

Learn how to add 301 redirects to a Eleventy site hosted on Netlify in this code tutorial.

27 Nov, 2020 Β· 2 min read

Hey guys, a β€œweird” tutorial for today. You might think ok adding some 301 redirects can’t be so difficult, but the combination of Netlify and Eleventy has some quirks to it.

Normally redirects would happen, in for example, an .htaccess file. In the case of Netlify, they want us to create a _redirects file.

Alright, simple enough.

Let’s add a _redirects file to our Eleventy project.

But here comes the difficulty: Eleventy won’t output _ prefixed files.

How to add redirects to an Eleventy site on Netlify

So how do we add Netlify redirects to our Eleventy blog?

I’m going to showcase my approach, there might be more sides to this, but for me just needing a 301 redirect this worked perfectly:

I’ve added the _redirects file to my src and the content looks like this:

/posts/javascript-map-function/ /posts/javascript-map-method/ 301
/posts/javascript-reduce-function/ /posts/javascript-reduce-method/ 301
/posts/javascript-filter-function/ /posts/javascript-filter-method/ 301

As you can see I decided to rename function to method, since it’s correct that way.

Now if we deploy it, this file would not be passed through. So open the .eleventy.js file and adjust as follows:

module.exports = function (config) {
  //All other stuff

  // Passthrough copy
  // All other passthroughs
  config.addPassthroughCopy('src/_redirects');

  return {
    dir: {
      input: 'src',
      output: 'dist',
    },
    passthroughFileCopy: true,
  };
};

As you can see, my setup is to take from the src directory and output to the dist directory. This might be different from your setup, so be aware of making changes to the folder names.

Where the magic happens is this code:

config.addPassthroughCopy('src/_redirects');

Here we tell Eleventy to add the src/_redirects file to our output folder (which is the dist folder).

If we then run the deployment, Netlify deploy center will show the that the redirect rules are processed:

Netlify eleventy 301 _redirects

Cool, we now have three redirects set up for Eleventy on Netlify!

You can also do the same for the _headers file if you need that.

Thank you for reading, and let’s connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter

Spread the knowledge with fellow developers on Twitter
Tweet this tip
Powered by Webmentions - Learn more

Read next πŸ“–

Netlify Drop - the easiest deployment ever

1 Mar, 2021 Β· 2 min read

Netlify Drop - the easiest deployment ever

Adding Tailwind to Eleventy

21 Jan, 2021 Β· 3 min read

Adding Tailwind to Eleventy

Join 2099 devs and subscribe to my newsletter