Comments on: Redirection de “www” pour Apache, Nginx et Lighttpd http://sametmax.com/redirection-de-www-pour-apache-nginx-et-lighttpd/ Du code, du cul Mon, 28 Oct 2019 11:54:55 +0000 hourly 1 https://wordpress.org/?v=4.9.7 By: Guillaume http://sametmax.com/redirection-de-www-pour-apache-nginx-et-lighttpd/#comment-99244 Thu, 24 Jul 2014 13:32:44 +0000 http://sametmax.com/?p=870#comment-99244 Normalement d’après les Bests Practices Nginx, on devrait plutôt faire comme ça (sans “www” vers “www” par exemple) :

server {
        listen 80;
        server_name mon-domaine.fr;
        return 301 http://www.mon-domaine.fr$request_uri;
}

Remplacer 301 par 302 si vous ne voulez pas d’une redirection permanente.

]]>
By: Sam http://sametmax.com/redirection-de-www-pour-apache-nginx-et-lighttpd/#comment-6040 Thu, 07 Feb 2013 21:03:20 +0000 http://sametmax.com/?p=870#comment-6040 Bonjour, debugger sur un blog n’a jamais vraiment bien marcher. Je vous conseille de poser la question sur serverfault.com, vous aurez une réponse très vite.

]]>
By: tode http://sametmax.com/redirection-de-www-pour-apache-nginx-et-lighttpd/#comment-6039 Thu, 07 Feb 2013 19:53:06 +0000 http://sametmax.com/?p=870#comment-6039 Bonjour,
la redirection avec nginx de www vers sans ne fonctionne pas, FF me dit qu’il y a une redirection qui n’abouti pas.
Merci pour votre aide.

]]>
By: Max http://sametmax.com/redirection-de-www-pour-apache-nginx-et-lighttpd/#comment-5528 Fri, 25 Jan 2013 19:34:58 +0000 http://sametmax.com/?p=870#comment-5528 Il vous en prie

]]>
By: Symen http://sametmax.com/redirection-de-www-pour-apache-nginx-et-lighttpd/#comment-5527 Fri, 25 Jan 2013 19:31:45 +0000 http://sametmax.com/?p=870#comment-5527 Merci pour l’article, il vient de me servir à l’instant. :)

]]>
By: Muchos http://sametmax.com/redirection-de-www-pour-apache-nginx-et-lighttpd/#comment-385 Fri, 08 Jun 2012 03:43:31 +0000 http://sametmax.com/?p=870#comment-385 Merci pour cette astuce !
Les règles pour Apache fonctionnent parfaitement.

]]>
By: Sam http://sametmax.com/redirection-de-www-pour-apache-nginx-et-lighttpd/#comment-380 Wed, 06 Jun 2012 20:03:06 +0000 http://sametmax.com/?p=870#comment-380 Bien vu :-) La magie du copier/coller.

Corrigé.

]]>
By: Baronsed http://sametmax.com/redirection-de-www-pour-apache-nginx-et-lighttpd/#comment-379 Wed, 06 Jun 2012 05:36:56 +0000 http://sametmax.com/?p=870#comment-379 Apche -> Apache
Et t’as laissé le www dans le premier ^^.

]]>