我如何解释这404发现?

时间:2015-07-10 08:08:04

标签: http-status-code-404 analytics

在Google Analytics中,此页面显示为登录页面,最终显示为访问过的页面:

subdomain.domain.com.au/404.html?page = /&安培;从=

现有的跟踪代码如下:

<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
  ga('create', 'UA-XXXXXXXX-X', 'auto');
  ga('set', 'forceSSL', true);
  ga('require', 'displayfeatures');
  ga('send', 'pageview', '404.html?page='+ document.location.pathname + document.location.search +'&from=' + document.referrer);
</script>

如果我要解释Google Analytics显示的网址,那么访问404会导致访问“/”,对吧?如果我是对的,为什么“/”会产生404?

然后这是另一个显示404相关的URL:

subdomain.domain.com.au/404.html?page=/sample-page/&from = http://subdomain.domain.com.au/

这是否意味着导致404的访问是针对“/ sample-page /”并且它来自“subdomain.domain.com.au /”?

但是“/ sample-page /”实际上是这样,为什么它会显示404?另外,“subdomain.domain.com.au/”上没有任何错误的链接,那么错误的页面怎么会源于它呢?

这让我很困惑。任何反馈将不胜感激。

1 个答案:

答案 0 :(得分:0)

您可以按照其中一个Wordpress链接创建404模板,您也可以在其中应用GA 404代码:

https://codex.wordpress.org/Creating_an_Error_404_Page

http://www.wpbeginner.com/wp-themes/how-to-improve-your-404-page-template-in-wordpress/

或者只是搜索Wordpress 404插件。

我对WP并不完全熟悉,因此您可能需要查看需要包含多少GA代码。并且不要忘记通过删除404位来修复现有的网页浏览代码。