Hi, pulling my hair out here, so hoping someone has a suggestion. I’ve been running mint since the beginning and love it. I run a large affiliate sales website, all of my outbound links are stored as such:
mysite.com/mylinkdirectory/sitename/index.php
Each index.php file within these directories is using a php redirect.
Example:
<?php
ob_start();
echo "Redirecting";
header("Location: http://somewebsite.com");
ob_flush();
?>
I use the .htaccess method for calling to mint site wide, but it does not work in this case. Placing the code in the .htaccess files of these directories doesn’t work.
It’s really important to me that I be able to track these outbound links, but so far no luck. I cannot obviously simply include the mint script in these files as it would break the redirect.
Up until recently we used to use the javascript method of redirection and include the script file in each HTML redirect file, but have recently switched to PHP redirects due to compatibility.
Can anyone make a suggestion has to how I can track these pages?