¿Cómo puedo redirigir todas las solicitudes tratando de llegar a una carpeta?
por ejemplo, me gustaría redireccionar:
somedomain.com/folder/subfolder/index.html
somedomain.com/folder/subfolder2/something.html
somedomain.com/folder/subfolder3/somethingelse.html
a
somedomain2.com/index.html
lo que he intentado
if ( $request_uri = "/folder/.*" ) {
rewrite ^/(.*)$ http://domain2.com/embed.html permanent;
}