This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <VirtualHost *:80> | |
| ServerName sample.com | |
| Redirect permanent / https://sample.com/ | |
| </VirtualHost> | |
| <IfModule mod_ssl.c> | |
| <VirtualHost _default_:443> | |
| ServerAdmin admin@localhost | |
| ServerName sample.com | |
| ServerAlias www.sample.com | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | (function($) { | |
| $.fn.utm_tracking = function(domain, source, medium, campaign) { | |
| $(this).find('a[href^="' + domain + '"]').each(function() { | |
| var url = $(this).attr('href'); | |
| $(this).attr( 'href', url + '?utm_source=' + source + '&utm_medium=' + medium + '&utm_campaign=' + campaign ); | |
| }); | |
| } | |
| $.fn.utm_tracking_via_obj = function(domain, utmObj) { | |
| utmObj = utmObj || $.utm_data_from_url(); | |
| $(this).find('a[href^="' + domain + '"]').each(function() { |