﻿  //redirect index.html to ''
  
    var string=window.location.href;
    
    if (string.indexOf('index.html') > 0  )
    
    {
    
        if (string.indexOf('/1/') > 0 )
        
        {
            window.location="http://www.constructioncommunicator.com/1/"
        }
        
        else
    
        {
            window.location="http://www.constructioncommunicator.com"
            
        }
    
    }