Fix Google Analytics Redundant Hostnames problem
Google Analytics alerted me to a "redundant hostnames" problem today. From the message, appparently, Google Analytics is receiving data streaming from two version of my website instead of one, the non-www and the www version.
To fix this problem, I need to tweak the NGINX configuration from this :
server {
listen 80;
server_name socketloop.com www.socketloop.com;
return 301 https://www.socketloop.com$request_uri;
rewrite ^ https://www.socketloop.com$request_uri? permanent;
to this :
server {
listen 80;
server_name socketloop.com;
rewrite ^/(.*)$ https://socketloop.com$request_uri? permanent;
Instead of two server names, now it has only one with the new server_name socketloop.com;
NGINX parameter and redirect every request to the https
version with the rewrite ^/(.*)$ https://socketloop.com$request_uri? permanent;
parameter.
After Google Analytics re-verify the new configuration, the problem is now marked as resolved.
Hope this tutorial may be useful to you.
Reference :
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+8.2k Android Studio : Import third-party library or package into Gradle Scripts
+7.6k Golang : Regular Expression find string example
+8.1k Golang : Count leading or ending zeros(any item of interest) example
+4.7k Unix/Linux : secure copying between servers with SCP command examples
+7.5k Golang : Trim everything onward after a word
+10.7k Golang : Fix go.exe is not compatible with the version of Windows you're running
+8.7k Golang : How to capture return values from goroutines?
+54.7k Golang : Unmarshal JSON from http response
+7.6k Golang : Load DSA public key from file example
+8.6k Golang : Find network service name from given port and protocol
+11.4k Golang : How to detect a server/machine network interface capabilities?
+26.3k Golang : Encrypt and decrypt data with AES crypto