I don’t know why but many of my traffic is going to error page from past 2 months
my site is working perfectly but still
Here is the image link : Image
Docs link for image
https://drive.google.com/open?id=17FfHDTZdMuIMguE80QKkEiTfaSTNZ4Yv
Link is not working here is image in my docs
https://drive.google.com/open?id=17FfHDTZdMuIMguE80QKkEiTfaSTNZ4Yv
Sorry here is the right image documnet
upload.png - Google Drive
I'm sorry, but I don't know what that screenshot is from or what it means.
Is it from Google Analytics (the design looks like Google)? Note that Google Analytics "spam" is a known issue, where bots generate random data which is added to your analytics, but doesn't represent any actual visitors.
yes It is from google analytics…but sometimes users go to /h/17893.html address which is my error page…are they bots?
I have no idea. You'd have to dig into the analytics to figure that out. Maybe these "visitors" have something in common, like device, location or traffic source?download said:yes It is from google analytics....but sometimes users go to /h/17893.html address which is my error page...are they bots?
yeah i got this, I used rewrite code to redirect all my traffic to solutiongeek instead of www but it is working opposite that’s why my more than half users are going in error page.My most of traffic comes from no-www site
RewriteEngine On # This line may already exist # Rewrite all requests to the ‘www’ version
RewriteCond %{HTTP_HOST} ^solutiongeek\.in$ [NC]
RewriteRule ^.*$ http://solutiongeek.in%{REQUEST_URI} [R=301,L]
What’s wrong in above code, I want to redirect to non-www site but www site is working and non -www has stopped
I suspect that this line:
`RewriteCond %{HTTP_HOST} ^solutiongeek\\.in$ [NC]` ```
Should be changed to this:
`RewriteCond %{HTTP_HOST} ^www\\.solutiongeek\\.in$ [NC]` ```
RewriteCond means that the next rules will only be applied if the condition matches. Your condition checks if the domain is solutiongeek.in, and doesn't do anything if the domain is not solutiongeek.in (e.g. www.solutiongeek.in).
The current code means no rules are applied to www.solutiongeek.in and solutiongeek.in likely generates a redirect loop.