I just threw a NodeJS app up on a server and I am trying to implement tracking on it.
I can track the page views and so on like normal. But the incoming URL is not working or I am missing what change is needed to make it actually load the page.
It seems since there is no index.html or index.php the NodeJS server does not like the incoming URL.
Here are the ways I have tried so far.
All fail on the GET request. I even tried with the name of the file the NodeJS server is running
Anyone know what I am missing here? The NodeJS server is being proxied to Port 80 on apache
I can track the page views and so on like normal. But the incoming URL is not working or I am missing what change is needed to make it actually load the page.
It seems since there is no index.html or index.php the NodeJS server does not like the incoming URL.
Here are the ways I have tried so far.
http://www.MySite.com/#pk_campaign=CampaignName http://www.MySite.com#pk_campaign=CampaignName http://www.MySite.com/?pk_campaign=CampaignName http://www.MySite.com?pk_campaign=CampaignName
All fail on the GET request. I even tried with the name of the file the NodeJS server is running
http://www.MySite.com/app.js#pk_campaign=CampaignName http://www.MySite.com/app.js?pk_campaign=CampaignName
Anyone know what I am missing here? The NodeJS server is being proxied to Port 80 on apache