The Netlify component theme for Cecil provides support of Netlify's _redirects
and _header
.
After installation and without any configuration, this component theme generate:
- a
_redirects
file containing HTML's redirections created by Cecil (automatic or created manually with theredirect
front matter variable) - a
_header
file containg a set of best praticies about security and assets cache control
composer require cecil/theme-netlify
Or download the latest archive and uncompress its content in
themes/netlify
.
Add netlify
in the theme
section of your config.yml
:
theme:
- netlify
netlify:
redirects:
- from: https://xxxxxx/*
to: https://xxxxxx/:splat
status: 301 # optional
force: true # optional
Refer to Netlify documentation for details.
netlify:
redirect_by_language: true # false by default
It generate the following redirect for each available language (other than the default):
/ /<language-code>/ 302! Language=<language-code>
Example:
/ /fr/ 302! Language=fr
The language can be specified in the cookie
nf_lang
, so you can override the default behavior with JavaScript (in case of a language dropdown selector for example).