Zencart消除SEO URL中重复的网址或者页面

来源:互联网 发布:linux时间戳转换算法 编辑:程序博客网 时间:2024/05/16 14:31

安装了Ultimate SEO URLs,进行了URL伪静态
更改商品分类名称后URL发生了改变,
比如 本来商品分类名称为 DVD Movies

那DVD Movies 的URL为:http://demo.zen-cart.cn/dvd-movies-c-3.html
现在在后台把商品分类DVD Movies改为China DVD Movies
那China DVD Movies 的URL为http://demo.xxx.cn/china-dvd-movies-c-3.html
要命的是:原来的 http://demo.XXX.cn/dvd-movies-c-3.html还可以访问,内容和http://demo.xxx.cn/china-dvd-movies-c-3.html的相同,这2个URL指向的其实是同一个页面.

这个SEO模块是有重复网址的问题,实际上不管分类名称输入什么,都是根据后面的分类编号来打开分类页面的,产品页面也会出现这类重复URL.

解决方法:

首先,商店设置-搜索引擎优化-打开自动跳转吗Cheap Shoes,设置为 true
然后打开文件 \includes\classes\seo.url.php

找到:$this->attributes['SEO_REDIRECT']['NEED_REDIRECT'] = $this->need_redirect ? 'true' : 'false';

在前面加上:

    // check product name from URL and redirect if not equal to real product name to avoid duplicates
      if ( preg_match('/-p-[0-9]/i', $this->uri) && preg_match('/main_page=product_info/i', $this->real_uri) ) {
         $productname_from_url = preg_replace('/-p-[0-9].*/i','',$this->uri);
         $productid_from_url= preg_replace('/.*-p-([0-9]+)\.html/i','$1',$this->uri);
         if ( $this->get_product_name($productid_from_url) != $productname_from_url ) {
            $this->need_redirect = true;
         // repeating procedure from function check_redirect() but for real_uri
         if ($this->is_attribute_string($this->real_uri)) {
         $parsed_url = parse_url($this->real_uri);
         $this->uri_parsed = parse_url($parsed_url['scheme']);
         $this->uri_parsed['query'] = preg_replace('/products_id=([0-9]+)/', 'products_id=$1:' . $parsed_url['path'], $this->uri_parsed['query']);
      } else {
         $this->uri_parsed = parse_url($this->real_uri);
      }
         }
      } // end of product_info URL redirect

    // check category name from URL and redirect if not equal to real category name to avoid duplicates
      if ( preg_match('/-c-[0-9]/i', $this->uri) && preg_match('/main_page=index/i', $this->real_uri) ) {
         $categoryname_from_url = preg_replace('/-c-[0-9].*/i','',$this->uri);
         $categoryid_from_url= preg_replace('/.*-c-([0-9]+)\.html/i','$1',$this->uri);
         if ( $this->get_category_name($categoryid_from_url) != $categoryname_from_url ) {
            $this->need_redirect = true;
         // repeating procedure from function check_redirect() but for real_uri
         if ($this->is_attribute_string($this->real_uri)) {
         $parsed_url = parse_url($this->real_uri);
         $this->uri_parsed = parse_url($parsed_url['scheme']);
         $this->uri_parsed['query'] = preg_replace('/cPath=([0-9]+)/', 'cPath=$1:' . $parsed_url['path'], $this->uri_parsed['query']);
      } else {
         $this->uri_parsed = parse_url($this->real_uri);
      }
         }
      } // end of category URL redirect

上面的代码,自动分析请求的URL,如果URL中分类,商品名称与数据库里的不一样,就自动跳转到正确的页面,这样就消除了重复URL.对分类页面和商品页面都有效

原创粉丝点击