diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2013-04-20 17:40:22 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2013-04-20 17:40:22 +0200 |
commit | a0cbfad9fdacf74df26c8e8302900a2c48e9c140 (patch) | |
tree | 5c7ca7ac34277051889660db5f27dcfe545a8e02 /extras | |
parent | 91149dfb9162ff362c3d40472e68738adc22a75a (diff) |
Added 404 and htacess file
Diffstat (limited to 'extras')
-rw-r--r-- | extras/404.html | 8 | ||||
-rw-r--r-- | extras/htaccess | 4 |
2 files changed, 12 insertions, 0 deletions
diff --git a/extras/404.html b/extras/404.html new file mode 100644 index 0000000..5c0cda0 --- /dev/null +++ b/extras/404.html @@ -0,0 +1,8 @@ +{% extends "base.html" %} +{% block content_title %}Erreur 404{% endblock %} +{% block content %} +<section class="body page"> + <h1 class="page-title">Erreur 404</h1> + La page que vous cherchez n'existe pas. +</section> +{% endblock content %} diff --git a/extras/htaccess b/extras/htaccess new file mode 100644 index 0000000..c1e90ab --- /dev/null +++ b/extras/htaccess @@ -0,0 +1,4 @@ +ErrorDocument 404 /404.html + +# Redirection pour les flux rss restés sous wordpress +Redirect /feed/ /feed |