26

我目前User SEO URL's在 OpenCart Admin 中设置为 Yes。

System -> Settings -> Store -> Server -> User SEO URL's

到目前为止,所有标签和 SEO 链接都可以正常工作;该命令已达到预期效果。

但是对于主页和其他一些链接;如何删除:

index.php?route=common/home

从网址?我是否必须在硬编码 PHP 文件中进行查找和替换并进行风险升级,还是有其他方法?

(没有臃肿的性能,即没有糟糕的业余工具,如 vQmod)

4

16 回答 16

27

要简单地删除它,您可以在/catalog/controller/common/seo_url.php

寻找:

return $link;

新行之前放:

$link = str_replace('index.php?route=common/home', '', $link);

由 TheBlackBenzKid 编辑:如果您想要完整的 SEO,只需使用此行而不是上面的行:

$link = str_replace('index.php?route=', '', $link);

还要确保在商店的管理面板中打开了 SEO URL。

于 2012-06-05T18:34:35.270 回答
9

我真的很喜欢上面 Victor Schröder 的解决方案,因为它很简单。谢谢!我根据他的代码模型创建了一个 vQmod,以防它对任何人都有帮助。这是代码:

<modification>

    <file name="system/library/url.php">
        <operation>
            <search position="before"><![CDATA[$url .= 'index.php?route=' . $route;]]></search>
            <add><![CDATA[
                if ('common/home' == $route) {
                    if ($args) {
                        $url .= '?' . str_replace('&', '&amp;', '&' . ltrim($args, '&'));
                    }
                } else {
            ]]></add>
        </operation>
        <operation>
            <search position="before"><![CDATA[foreach ($this->rewrite as $rewrite) {]]></search>
            <add><![CDATA[
                }
            ]]></add>
        </operation>
    </file>

    <file name="catalog/controller/common/seo_url.php">
        <operation>
            <search position="replace"><![CDATA[parse_str($url_info['query'], $data);]]></search>
            <add><![CDATA[
                if (isset($url_info['query'])) parse_str($url_info['query'], $data);
            ]]></add>
        </operation>
    </file>

</modification>
于 2013-08-09T03:24:03.713 回答
8

之前的“解决方案”是错误的,因为他们攻击的是 SEO URL translate。您想要的是处理OpenCart中的 URL生成。

让我们保持简单。去/system/library/url.php看看public function link。用这个版本替换函数:

public function link($route, $args = '', $connection = 'NONSSL') {
    if ('NONSSL' == $connection) {
        $url = $this->url;
    } else {
        $url = $this->ssl;  
    }

    if ('common/home' == $route) {
        if ($args) {
            $url .= '?' . str_replace('&', '&amp;', '&' . ltrim($args, '&')); 
        }
    } else {
        $url .= 'index.php?route=' . $route;
        if ($args) {
            $url .= str_replace('&', '&amp;', '&' . ltrim($args, '&')); 
        }
    }

    foreach ($this->rewrite as $rewrite) {
        $url = $rewrite->rewrite($url);
    }

    return $url;
}

就这么简单。我无法相信为什么这不在 OpenCart 的核心中。

编辑:

我运行了一些测试,如果启用了 SEO URL,则有必要在其中进行一次编辑/catalog/controller/common/seo_url.php以避免“未定义索引”错误。

在里面public function rewrite,替换这一行:

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

有了这个:

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

现在它确实有效。

于 2013-03-09T01:40:22.253 回答
3

步骤 01. 在您的商店服务器设置中启用 USE SEO URL

转到“系统”,然后单击“设置”。找到您要更改的商店,然后单击右侧的“编辑”链接。最后单击“服务器”选项卡并将 SEO URL 的单选设置为“是”并保存您的设置。

注意:不会自动为您创建关键字。您还必须打开 Apache mod_rewrite。默认情况下,大多数网络主机都会启用此功能。本教程的第 3 步将解释如何添加关键字。

步骤 02. 更改 .htaccess 文件中的一些内容以使您的主页 SEO URL 友好

转到您的主机控制面板并编辑您的 .htaccess 文件。有时为了取消隐藏此文件是隐藏的,您可以单击您的网络主机控制面板文件管理器并勾选显示隐藏文件选项,然后单击“开始”按钮。

找到 .htaccess 文件后,更改以下行:

RewriteBase /
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]

至:

RewriteBase /
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
RewriteCond %{QUERY_STRING} ^route=common/home$
RewriteRule ^index\.php$ http://www.yourwebsite.co.uk? [R=301,L]

如果您执行上面的步骤,您的主页将从如下所示:http: //yourwebsite.com/index.php ?route=common/home 变为: http: //yourwebsite.com

步骤 03. 手动输入 URL 的 SEO 关键字 最后,您需要为要重写 URL 的每个页面、信息、产品和类别输入 SEO 关键字。编辑和创建项目时,您可以在数据选项卡下找到 SEO 关键字字段。

一旦您输入了 SEO 关键字,您的 URL 就会起作用。

一旦您遵循了所有这些说明,您就可以开始获得更高排名、增加流量和更多客户的好处。

于 2016-09-18T20:23:26.027 回答
2

如何将徽标中的链接替换为<?php echo $base; ?>. 它将链接到基本域并删除index.php?route=common/home.

于 2012-08-14T09:13:28.337 回答
2

杰的解决方案对我不起作用,编辑后我得到空白屏幕。所以我做了一个新的:

把这行放在前面:

return $link;

而不是之后:

public function rewrite($link) {
于 2013-03-03T15:20:17.183 回答
2

所以,我使用的是 1.5.5.1,没有一个关于这个问题的答案解决了我的问题。然而,结合@Jay Gilford@TheBlackBenzKid@rkaartikeyen的答案,我想出了一个完全可行的解决方案。

请记住启用@TheBlackBenzKid所示的 seo 网址。

可以在代码下方找到解释。

[php]
类 ControllerCommonSeoUrl 扩展控制器 {
    公共函数索引(){
        // 添加重写到 url 类
        if ($this->config->get('config_seo_url')) {
            $this->url->addRewrite($this);
        }

        // 解码网址
        if (isset($this->request->get['_route_'])) {
            $parts = explode('/', $this->request->get['_route_']);

            foreach ($parts 作为 $part) {
                $query = $this->db->query("SELECT * FROM " . DB_PREFIX . "url_alias WHERE 关键字 = '" . $this->db->e​​scape($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];
                        } 别的 {
                            $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];
                    }   
                } 别的 {
                    $this->request->get['route'] = 'error/not_found';   
                }
            }

            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'] = '信息/信息';
            }别的 {
                $this->request->get['route'] = $this->request->get['_route_'];
            }

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

    公共函数重写($链接){
        $url_info = parse_url(str_replace('&', '&', $link));

        $url = '';

        $数据 = 数组();

        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'] == '信息/信息' && $key == 'information_id')) {
                    $query = $this->db->query("SELECT * FROM " . DB_PREFIX . "url_alias WHERE `query` = '" . $this->db->e​​scape($key . '=' . (int)$价值) 。 ”'”);

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

                        未设置($data[$key]);
                    }                   
                } elseif ($key == '路径') {
                    $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'];
                        }                           
                    }

                    未设置($data[$key]);
                }
            }
        }

        如果($url){
            未设置($data['route']);

            $查询 = '';

            如果($数据){
                foreach ($data as $key => $value) {
                    $查询 .= '&' 。$键。'=' 。$价值;
                }

                如果($查询){
                    $查询 = '?' . 修剪($查询,'&');
                }
            }

            返回 $url_info['scheme'] 。'://' 。$url_info['host'] 。(isset($url_info['port']) ? ':' . $url_info['port'] : '') 。str_replace('/index.php', '', $url_info['path']) 。$网址。$查询;
        } 别的 {
            $link = str_replace('index.php?route=', '', $link);
            返回$链接;
        }
    }   
}

显然,@Jay Gilford@TheBlackBenzKid解决了在页面上正确写入 url 的问题。

113 号线

$link = str_replace('index.php?route=', '', $link);

但它似乎破坏了 url,因为控制器找不到页面,因此恢复到错误页面。

38 - 40 号线

} 别的 {
    $this->request->get['route'] = 'error/not_found';   
}

@rkaartikeyen 的解决方案通过将当前路由设置为请求的路由来解决这个问题

51 - 53 号线

别的 {
    $this->request->get['route'] = $this->request->get['_route_'];
}
于 2013-03-07T14:16:52.580 回答
1

我来晚了,但我的解决方案可能对其他人有用(在 Opencart 2.0.3.1 上测试):

打开您的 MySQL 控制台并运行此查询(使用您的数据库名称更改 YOURDATABASE):

INSERT INTO `YOURDATABASE`.`url_alias` (`url_alias_id`, `query`, `keyword`) VALUES (NULL, 'common/home', ' ');

这个怎么运作:

诀窍在于为“关键字”列添加一个空格(''),如果您插入一个空字符串(''),则此解决方法不起作用,并且 url 重写器将再次返回 index.php?route=common/家。

于 2015-07-05T14:26:06.533 回答
1

对我来说,最简单的方法是:

1-去/system/library/url.php

2- 定位function link(

3-上面return $url;放了以下行:

$url = str_replace('index.php?route=common/home', '', $url);
于 2020-05-09T23:29:32.657 回答
1

OpenCart 3.x

首先在您网站的根文件夹中将htaccess.txt重命名为.htaccess

然后转到系统 > 设置 > 您的商店。编辑。打开选项卡Server并将Use SEO URLs设置为Yes

现在打开目录/控制器/启动/seo_url.php

寻找} elseif ($key == 'path') {

之前添加

} elseif ($key == 'route') {
  $query = $this->db->query("SELECT * FROM " . DB_PREFIX . "seo_url WHERE `query` = '" . $this->db->escape($value) . "' AND store_id = '" . (int)$this->config->get('config_store_id') . "' AND language_id = '" . (int)$this->config->get('config_language_id') . "'");
 
  if ($query->num_rows && $query->row['keyword']) {
    $url .= '/' . $query->row['keyword'];
    unset($data[$key]);
  } else if ($data['route'] == "common/home") { 
    $url .= '/'; 
  } 

现在/index.php?route=common/home变成了/

现在您可以使用account/logininformation/contact等结构在Design > SEO URL中设置 SEO URL 。

于 2020-08-26T20:39:06.110 回答
0

在文件 \system\library\response.php 中,在公共函数 output() 的开头添加下一行

if (!defined('HTTP_CATALOG')) $this->output = str_replace(array('index.php?route=common/home', '?route=common/home'), '', $this->output);
于 2014-02-16T21:12:33.207 回答
0

我得到了这个http://www.antropy.co.uk/index.php/blog/one-quick-opencart-seo-tip-to-avoid-a-duplicate-home-page/为我删除了代码我的主页

于 2014-01-02T14:03:02.283 回答
0

/catalog/controller/common/seo_url.php

打开文件并替换下面的代码

<?php
class ControllerCommonSeoUrl extends Controller {
    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';   
                }
            }

            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';
            }else {
                $this->request->get['route'] = $this->request->get['_route_'];
            }

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

    public function rewrite($link) {
        if ($this->config->get('config_seo_url')) {
            $url_data = parse_url(str_replace('&amp;', '&', $link));
            $url = ''; 

            $data = array();

            parse_str($url_data['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]);
                    }else {
                        $url .= '/'.$value;
                    }
                }
            }

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

                $query = '';

                if ($data) {
                    foreach ($data as $key => $value) {
                        $query .= '&' . $key . '=' . $value;
                    }

                    if ($query) {
                        $query = '?' . trim($query, '&');
                    }
                }

                return $url_data['scheme'] . '://' . $url_data['host'] . (isset($url_data['port']) ? ':' . $url_data['port'] : '') . str_replace('/index.php', '', $url_data['path']) . $url . $query;
            } else {
                return $link;
            }
        } else {
            return $link;
        }       
    }   
}
?>

------------------改变的地方--------------------------

我在公共函数 index() 中添加的以下行也重写了公共函数。

else {
this->request->get['route'] = $this->request->get['_route_'];
}

index() 函数执行如下

  1. 从 htaccss "? route =$1" 获取查询(例如:url 看起来像 site.com/shirts)
  2. 所以路线是衬衫
  3. 现在该函数检查“衬衫”是否在 url_alias 表中找到,如果找到,那么它会从 url_alias 表中生成一个类似于 index.php?categoryID=Value 的变量。
  4. 或者,如果 url_alias 表中没有衬衫的记录,那么它会检查它是否是其他一些页面,如信息或制造商,如果它发现它会生成一个获取变量示例 index.php?route=information/information 或 index.php?route =产品/制造商/信息。
  5. 但它不检查它是否在布局中找到。所以我在 else 块中添加了将路由设置为 get 变量的代码,例如 index.php?route=< route >
  6. 所以在 index() 函数中它的工作正常。就像我在重写函数中所做的一样。
于 2012-11-18T21:52:46.093 回答
0

在 Opencart 3 中,如果你想重定向所有丑陋的 url,比如

index.php?route=common/home
index.php?route=account/register
index.php?route=product/product&path=244&product_id=481

您需要将漂亮的网址添加到Admin -> Design -> SEO Urls类似于

在此处输入图像描述

然后执行以下操作: In catalog/controller/startup/seo_url.php, in function index, after

if ($this->config->get('config_seo_url')) {
   $this->url->addRewrite($this);
}

添加这个

if (isset($this->request->get['route'])) {
    if (DOMAIN_ROOT . $this->request->server['REQUEST_URI'] != $this->rewrite(DOMAIN_ROOT . $this->request->server['REQUEST_URI'])) {
        $this->response->redirect($this->rewrite(DOMAIN_ROOT . $this->request->server['REQUEST_URI']));
    }
}
elseif (strpos($this->request->server['REQUEST_URI'], 'index') !== false) {
    $this->response->redirect(HTTPS_SERVER);
}

添加最后一步是DOMAIN_ROOTconfig.phpwith中定义

define('DOMAIN_ROOT', 'https://www.somedomain.org'); // no slash, no subfolder

它对我来说效果很好

于 2021-04-24T05:11:32.957 回答
-1

我为此创建了一个 VQMOD。在这里免费下载:http ://www.opencart.com/index.php?route=extension/extension/info&extension_id=14683

效果很好。

于 2013-12-12T15:50:53.390 回答
-1

要从 url 中删除index.php?route=,我只是建议编辑.htaccess文件。

只需添加以下内容:

RewriteCond %{THE_REQUEST} \ /index\.php\?_route_=?([^&\ ]*)
RewriteRule ^ /%1? [L,R]

我没有遇到任何问题。请记住,您需要启用RewriteEngine 。寻找这一行:RewriteEngine On。如果不存在,请在上面的代码之前过去。

于 2016-08-08T09:19:04.253 回答