Preguntas etiquetadas con url-rewriting

484
El htaccess genérico redirige www a no www

Me gustaría redirigir www.example.coma example.com. El siguiente código htaccess hace que esto suceda: RewriteCond %{HTTP_HOST} ^www\.example\.com [NC] RewriteRule ^(.*)$ http://example.com/$1 [L,R=301] Pero, ¿hay alguna manera de hacer esto de manera genérica sin codificar el nombre de...

135
Cómo redirigir una url en NGINX

Necesito redirigir cada solicitud de http://test.com a http://www.test.com . ¿Cómo se puede hacer esto? En el bloque del servidor intenté agregar rewrite ^/(.*) http://www.test.com/$1 permanent; pero en el navegador dice The page isn't redirecting properly Firefox has detected that the...