// JavaScript Document
function redir_url()
{
  var path = location.pathname;
  var host = location.hostname;
  var ruta = location.protocol;
  var dir = ruta + "//" + host;
  //alert (path)
  //alert (host)
  //alert (ruta)
  //alert (dir)

  var url= "https://www.bgeneral.com"+path;  //debe ir asi a producción 
  if (dir != "https://www.bgeneral.com")     //debe ir asi a producción 

  //var url= "http://123.252.252.207"+path;	   
  //if (dir != "http://123.252.252.207")
     {
      // alert (host)
      location.replace (url)  //descomentar cuando pase a producción.
     }
}