====== Page de redirection Apache ====== Exemple de page **redirection.html** du site **listes.enit.fr** Bienvenue

Bienvenue sur le serveur Sympa Enit

Cette application a changé d'adresse, veuillez mettre à jour vos favoris.

https://listes.uttop.fr

Fichier **/etc/apache2/sites-available/listes.enit.fr.conf ** #redirect http to https ServerAdmin webmaster@localhost DocumentRoot /var/www/html ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined Redirect permanent "https://listes.enit.fr/" ServerName listes.enit.fr DocumentRoot /srv/maintenance RewriteEngine on RewriteRule "^/.*$" "/redirection.html" [PT] Options Indexes FollowSymLinks MultiViews AllowOverride all Require all granted # ServerAlias listes.uttop.fr # proxy fcgi using socket is in wwsympa.conf and was enabled with a2enconf # see /etc/apache2/conf-available/wwsympa.conf # it could be included here too if not gloablly enabled : # Include conf-available/wwsympa.conf # ServerAdmin webmaster@localhost # DocumentRoot /var/www/html ErrorLog ${APACHE_LOG_DIR}/listes.enit.fr.key.log CustomLog ${APACHE_LOG_DIR}/listes.enit.fr.key.log combined SSLEngine on SSLCertificateFile /etc/apache2/ssl/wildcard.uttop.fr.crt SSLCertificateKeyFile /etc/apache2/ssl/wildcard.uttop.fr.key.pem SSLCertificateChainFile /etc/apache2/ssl/chain.uttop.fr.crt #SSLCertificateFile /etc/ssl/certs/listes01_enit_fr.pem #SSLCertificateKeyFile /etc/ssl/private/listes01.enit.fr.key.pem # redirect / root to sympa # RedirectMatch ^/$ /sympa/ # vim: syntax=apache ts=4 sw=4 sts=4 sr noet