Supprimer «www» de son URL
Dans le fichier .htaccess situé à la racine de ma galerie photos Piwigo j'ai ajouté les lignes suivantes:
RewriteEngine On
## www -> no-www
RewriteCond %{HTTP_HOST} ^www.(.+)$
RewriteRule ^ https://%1%{REQUEST_URI} [R=301,L,NE,QSA]
## http -> https
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L,NE,QSA]
Comment supprimer «www» de son URL avec un fichier .htaccess ?
Mercredi 10 juin 2020 - 15:30
- 5 vues