summaryrefslogtreecommitdiff
path: root/extras/htaccess
blob: 8f5358fe35dd9739f2fa1a889e56f30c725ddd44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
ErrorDocument 404 /404.html

# Redirection pour les flux rss restés sous wordpress
Redirect /feed/ /feed

# On n'autorise pas le parcours des répertoires
DirectoryIndex index.html /404.htm

# Flux cassé depuis la maj de pelican
Redirect /feeds/Libre.atom /feeds/libre.atom
Redirect /feeds/Perso.atom /feeds/perso.atom

# Réécriture pour l'ancien flux rss
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{QUERY_STRING}     ^feed=rss2$     [NC]
    RewriteRule ^$ /feed [NC,L,R=301]
</IfModule>