Jump to content

Как убрать index.php/?route=common/home на главной странице опенкарт?


grankol
 Share

Go to solution Solved by mpn2005,

Recommended Posts

Включить СЕО Про например, в настройках интернет-магазина. Важно не забыть переименовать .htaccess.txt в просто .htaccess

Дизайн, программирование, обновление и тех. поддержка Opencart, ocStore

Телеграм — @devagency

Link to comment
Share on other sites

9 часов назад, grankol сказал:

Не получается.. у меня сеопро тоже нету..

 

Система -> Настройки -> Редактировать 

 

Дальше в зависимости от  версии или во вкладке Сервер или отдельная вкладка SeoPro

2022-06-11_11-26-10.png

2022-06-11_11-23-29.png

Link to comment
Share on other sites

  • Solution
12 часов назад, grankol сказал:

Не получается.. у меня сеопро тоже нету..

Без СеоПро  придётся вносить правки в код.

Надо править файл catalog/controller/startup/seo_url.php

 

В двух местах строку:

$url = '';

Заменить на это:

$url = null;

 

Это:

if ($url) {

Заменить на это:

if (isset($url)) {

 

После вот этой строки:

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

Вот это:

if (isset($data['route'])) {
    $query = $this->db->query("SELECT * FROM " . DB_PREFIX . "seo_url WHERE `query` = '" . $this->db->escape($data['route']) . "' AND store_id = '" . (int)$this->config->get('config_store_id') . "' AND language_id = '" . (int)$this->config->get('config_language_id') . "'");

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

 

Потом в модификаторах нажать кнопку "Обновить".

Вот файл с уже внесёнными правками:

seo_url.zip

 

В штатной библиотеке сео урлов нет редиректа с не ЧПУ ссылки на ЧПУ. Поэтому если сайт давно работает, то стоит настроить редирект с "/index.php?route=common/home" на "/"

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...