Options +FollowSymlinks -Indexes
AddDefaultCharset UTF-8
# BEGIN Cache-Control Headers
### Caching mod_headers + mod_expires
# Turn on Expires and set default to now
ExpiresActive On
ExpiresDefault "now"
# Set up caching on media files for 1 month
ExpiresDefault "access plus 1 month"
# Set up caching on images, CSS and JS files for 1 month
ExpiresDefault "access plus 1 month"
# Set up 1 hour caching on commonly updated files
ExpiresDefault "access plus 1 hour"
# Force no caching for dynamic files
ExpiresActive Off
# Remote ETag from headers
Header unset ETag
# Disable ETag for files
FileETag None
# Media files are catchable
Header append Cache-Control "public"
# Images, css and javascript files are catchable
Header append Cache-Control "public"
# Commonly updated files are catchable
Header append Cache-Control "public"
# Force no caching for dynamic files
Header set Cache-Control "private, no-cache, no-store, proxy-revalidate, no-transform"
Header set Pragma "no-cache"
# END Expire headers
RewriteEngine On
# SEO, remove the subdomain www in URL
# Exemple : http://www.yourdomain.com/contact redirect 301 to http://yourdomain.com/contact
# To activate uncomment the following two lines
#RewriteCond %{HTTP_HOST} ^www.yourdomain.com$
#RewriteRule ^(.*) http://yourdomain.com/$1 [QSA,L,R=301]
# SEO, add the subdomain www in URL
# Exemple : http://yourdomain.com/contact redirect 301 to http://www.yourdomain.com/contact
# To activate uncomment the following two lines
#RewriteCond %{HTTP_HOST} ^yourdomain.com$
#RewriteRule ^(.*) http://www.yourdomain.com/$1 [QSA,L,R=301]
# SEO, to avoid duplicate content with index.php in url
# Exemple : http://www.yourdomain.com/index.php/contact redirect 301 to http://www.yourdomain.com/contact
RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]
RewriteRule (.?)index\.php/(.*) /$1$2 [R=301,NE,L]
# If thelia is installed in a subdirectory (e.g., thelia2)
# define the RewriteBase below to get a proper URL rewriting
# RewriteBase /thelia2
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L]
RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization},last]
Redirect "/admin_FN5APhpBzO/accueil.php" "/admin/login"