I have a service that we can consider it as a redirect url service . so when I open google analytics realtime screen I didn't find my domain in top referrers list .
header("HTTP/1.1 301 Moved Permanently");
header("Location: ".$url);
exit();
my configurations is a 301 request status, chrome browser detect my domain as a referrer but google analytics not. redirect is from http to http
Any idea how I can figure out this problem ?