11 lines
402 B
ApacheConf
11 lines
402 B
ApacheConf
RewriteEngine On
|
|
|
|
# 1. Rediriger l'index.html vers la racine (évite le duplicate content)
|
|
RewriteCond %{THE_REQUEST} /index\.html [NC]
|
|
RewriteRule ^(.*)index\.html$ /$1 [L,R=301]
|
|
|
|
# 2. Supprimer l'extension .html des URLs
|
|
# Permet d'accéder à site.com/about au lieu de site.com/about.html
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteCond %{REQUEST_FILENAME}\.html -f
|
|
RewriteRule ^(.*)$ $1.html [NC,L] |