opencart use seo urls 怎么设置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了opencart use seo urls 怎么设置相关的知识,希望对你有一定的参考价值。

Opencart 开启静态化后,产品、分类、信息等页面的静态化地址SEO Keyword还是需要手动填写,否则前台就不会使用静态化的地址,如果产品很多,那么这样的工作也是非常繁琐的。而一旦不设置,URL和搜索引擎收录来说又不友好。

 

那么,我们应该如何设置呢?其实很简单,甚至不需要修改 Opencart 本身源代码,只是需要自己做一个插件即可,步骤也很少,如下。

 

新建一个 UTF-8 编码的XML文件,文件名为:admin_auto_seo_field.ocmod.xml,内容为:

 

<?xml version="1.0" encoding="utf-8" ?>

<modification>

  <name>Admin Auto SEO field (Category, Product, Information) v1</name>

  <code>admin-auto-seo-field</code>

  <version>2.0.1.0</version>

  <author>nqueiros - x9soft.com / UP to Ver. 2.0.1.0 - João Mello</author>

  <link>http://joaomello.com.br</link>

 

  <file path="admin/view/template/common/header.tpl">

    <operation>

      <search position="before"><![CDATA[</head>]]></search>

      <add><![CDATA[

        <script type="text/javascript">

          $(document).ready(function()

          

          var keyword = $("input[name=keyword]");

          if(!keyword.val())

 

            $("input[name^='product_description']").keyup(function()

   

              var SEOlink = $("input[name^='product_description']").val();

              

// var SEOlink = $(this).val();

                SEOlink = SEOlink.replace(/^\\s+|\\s+$/g, ''); // trim

                SEOlink = SEOlink.toLowerCase(); // remove accents, swap, etc

 

              SEOlink = SEOlink.replace(/[^a-z0-9( -]/g, '') // remove invalid chars

 .replace(/\\(/g,"-") // replace ( 

              .replace(/\\s+/g, '-') // collapse whitespace and replace by -

              .replace(/-+/g, '-'); // collapse dashes

                

               SEOlink += ".html";

               keyword.val(SEOlink);

 

            );

         

        );

          </script>

        ]]></add>

     </operation>

  </file>

</modification>

然后通过后台“Extensions”> “Extension Installer”上传这个XML文件。上传完成后,再点击“Extensions”>“Modifications”右上角的“Refresh”按钮。这样返回添加产品的时候,输入产品名称 SEO Keyword就自动补上了,比如输入产品名称为“camera”,那么SEO Keyword就是:camera.htm,如下:

以上程序基于Opencart免费插件 Admin Auto SEO Field 修改而来,原插件支持产品页、分类页、信息页的SEO Keyword自动补充,需要的也可以下载原插件。

   

参考技术A Opencart的使用SEO的URL开启静态化后,静态化地址SEO Keyword还是需要手动填写,否则前台就不会使用静态化的地址,而一旦不设置,URL和搜索引擎收录来说又不友好。
那么,我们应该如何设置呢?其实很简单,按照以下步骤操作就可以:
第一步:启动使用SEO URLs到系统商店设置中选中Use SEO URL’s
第二步,将网站根目录中的文件.htaccess.txt 改名为 .htaccess
第三步:在你的产品,分类,品牌,文章中加入seo keyword关键词。注意关键词不要重复,也不要留有空格。
此时刷新你的网站前台,应该起作用了。
如果你的opencart系统安装在了子目录下,比如http://www.yourdomain.com/opencart/,那么你应该修改此目录下的.htaccess文件。
# SEO URL Settings
RewriteEngine On
RewriteBase /
RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
RewriteRule ^(.*)\?*$ index.php?_route_=$1 [L,QSA]
将:RewriteBase /改为RewriteBase /opencart/
编辑后应该为:# SEO URL Settings
RewriteEngine On
RewriteBase /opencart/
RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
RewriteRule ^(.*)\?*$ index.php?_route_=$1 [L,QSA]
有的朋友使用的服务器是windows的,我们无法提供相关rewrite的相关帮助,请自己谷歌或百度相关答案,或者更换成为适合opencart运行的服务器空间。

如何在OpenCart中创建自定义SEO友好的URL?

如何在OpenCart中自定义系统URL?例如,我希望http://example.com/index.php?route=checkout/cart显示为http://example.com/cart

我知道OpenCart为产品,类别,制造商和信息页面提供了SEO URL,但看起来并没有内置任何内容(至少在1.5.0版之前)。

答案

事实证明,这可以通过对单个文件进行相对简单的更改来完成。没有.htaccess重写规则,只需修补catalog / controller / common / seo_url.php文件,并将漂亮的URL添加到现有的数据库表中。


seo_url.php的补丁:

Index: catalog/controller/common/seo_url.php
===================================================================
--- catalog/controller/common/seo_url.php   (old)
+++ catalog/controller/common/seo_url.php   (new)
@@ -48,7 +42,12 @@
                $this->request->get['route'] = 'product/manufacturer/product';
            } elseif (isset($this->request->get['information_id'])) {
                $this->request->get['route'] = 'information/information';
-           }
+           } else {
+                $query = $this->db->query("SELECT * FROM " . DB_PREFIX . "url_alias WHERE keyword = '" . $this->db->escape($this->request->get['_route_']) . "'");
+                if ($query->num_rows) {
+                    $this->request->get['route'] = $query->row['query'];
+                }
+           }

            if (isset($this->request->get['route'])) {
                return $this->forward($this->request->get['route']);
@@ -88,7 +87,15 @@
                        }

                        unset($data[$key]);
-                   }
+                   } else {
+                        $query = $this->db->query("SELECT * FROM " . DB_PREFIX . "url_alias WHERE `query` = '" . $this->db->escape($data['route']) . "'");
+
+                        if ($query->num_rows) {
+                            $url .= '/' . $query->row['keyword'];
+
+                            unset($data[$key]);
+                        }
+                   }
                }
            }

需要进行两次编辑。第一个扩展index()函数,在url_alias表中查找与$this->request->get['_route_']匹配的任何关键字。

第二个扩展了rewrite()函数,在url_alias表中查找所有路径,而不仅仅是产品,制造商和信息页面。


向数据库添加条目:

INSERT INTO `url_alias` (`url_alias_id`, `query`, `keyword`) VALUES
(NULL, 'checkout/cart', 'cart');

而已。 http://example.com/cart应该返回与http://example.com/index.php?route=checkout/cart相同的东西,OpenCart应该识别$this->url->link('checkout/cart');并返回漂亮的URL http://example.com/cart的链接

另一答案

我正在使用Opencart版本1.5.5.1,这是对我有用的确切代码:

<?php 
class ControllerCommonSeoUrl extends Controller {
    /* SEO Custom URL */
    private $url_list = array (
        'common/home'       => '',
        'checkout/cart'     => 'cart',
        'account/register'  => 'register',
                    'account/wishlist'  => 'wishlist',
                    'checkout/checkout' => 'checkout',
                    'account/login'     => 'login',
                    'product/special'   => 'special',
                    'affiliate/account' => 'affiliate',
                    'checkout/voucher'  => 'voucher',
                    'product/manufacturer' => 'brand',
                    'account/newsletter'   => 'newsletter',
                    'account/order'        => 'order',
                    'account/account'      => 'account',
                    'information/contact'  => 'contact',
                    'account/return/insert' => 'return',
                    'information/sitemap'   => 'sitemap',
        );
    /* SEO Custom URL */

public function index() {
    // Add rewrite to url class
    if ($this->config->get('config_seo_url')) {
        $this->url->addRewrite($this);
    }

    // Decode URL
    if (isset($this->request->get['_route_'])) {
        $parts = explode('/', $this->request->get['_route_']);

        foreach ($parts as $part) {
            $query = $this->db->query("SELECT * FROM " . DB_PREFIX . "url_alias WHERE keyword = '" . $this->db->escape($part) . "'");

            if ($query->num_rows) {
                $url = explode('=', $query->row['query']);

                if ($url[0] == 'product_id') {
                    $this->request->get['product_id'] = $url[1];
                }

                if ($url[0] == 'category_id') {
                    if (!isset($this->request->get['path'])) {
                        $this->request->get['path'] = $url[1];
                    } else {
                        $this->request->get['path'] .= '_' . $url[1];
                    }
                }   

                if ($url[0] == 'manufacturer_id') {
                    $this->request->get['manufacturer_id'] = $url[1];
                }

                if ($url[0] == 'information_id') {
                    $this->request->get['information_id'] = $url[1];
                }   
            } else {
                $this->request->get['route'] = 'error/not_found';   
            }
        }
                    /* SEO Custom URL */
                    if ( $_s = $this->setURL($this->request->get['_route_']) ) {
                            $this->request->get['route'] = $_s;
                    }/* SEO Custom URL */

        if (isset($this->request->get['product_id'])) {
            $this->request->get['route'] = 'product/product';
        } elseif (isset($this->request->get['path'])) {
            $this->request->get['route'] = 'product/category';
        } elseif (isset($this->request->get['manufacturer_id'])) {
            $this->request->get['route'] = 'product/manufacturer/info';
        } elseif (isset($this->request->get['information_id'])) {
            $this->request->get['route'] = 'information/information';
        }

        if (isset($this->request->get['route'])) {
            return $this->forward($this->request->get['route']);
        }
    }
}

public function rewrite($link) {
    $url_info = parse_url(str_replace('&amp;', '&', $link));

    $url = ''; 

    $data = array();

    parse_str($url_info['query'], $data);

    foreach ($data as $key => $value) {
        if (isset($data['route'])) {
            if (($data['route'] == 'product/product' && $key == 'product_id') || (($data['route'] == 'product/manufacturer/info' || $data['route'] == 'product/product') && $key == 'manufacturer_id') || ($data['route'] == 'information/information' && $key == 'information_id')) {
                $query = $this->db->query("SELECT * FROM " . DB_PREFIX . "url_alias WHERE `query` = '" . $this->db->escape($key . '=' . (int)$value) . "'");

                if ($query->num_rows) {
                    $url .= '/' . $query->row['keyword'];

                    unset($data[$key]);
                }                   
            } elseif ($key == 'path') {
                $categories = explode('_', $value);

                foreach ($categories as $category) {
                    $query = $this->db->query("SELECT * FROM " . DB_PREFIX . "url_alias WHERE `query` = 'category_id=" . (int)$category . "'");

                    if ($query->num_rows) {
                        $url .= '/' . $query->row['keyword'];
                    }                           
                }

                unset($data[$key]);
            }
                                    /* SEO Custom URL */
                                    if( $_u = $this->getURL($data['route']) ){
                                        $url .= $_u;
                                        unset($data[$key]);
                                    }/* SEO Custom URL */       


        }
    }

    if ($url) {
        unset($data['route']);

        $query = '';

        if ($da

以上是关于opencart use seo urls 怎么设置的主要内容,如果未能解决你的问题,请参考以下文章

如何在 OpenCart 中创建自定义的 SEO 友好 URL?

Opencart 版本 1.5.1.3 安装在 IIS 7 上。如何获得 SEO 友好的 URL?

如何在OpenCart中创建自定义SEO友好的URL?

opencart这个程序怎么样,主要的优缺点在哪里?

Opencart SEO打破类别直接

BOOKSTORE OPENCART 自适应主题模板 ABC-0109