Jump to content
  • разработка интернет магазинов на opencart
  • доработка интернет магазинов на opencart

Recommended Posts

Подскажите друзя ......Что ето за ошибка при анализе Гугл от чего может быть ?User-agent: *

какойто знак вопроса откуда он взялся. В файле нету ...

Аналіз файлу robots.txt

Значення Резульит Ряд 1: ?User-agent: * Незрозумылий синиксис Ряд 2: Disallow: /index.php?route=account Користувацький агент не вказаний Ряд 3: Disallow: /index.php?route=checkout Користувацький агент не вказаний Ряд 4: Disallow: /index.php?route=common Користувацький агент не вказаний Ряд 5: Disallow: /index.php?route=product Користувацький агент не вказаний Ряд 6: Disallow: /index.php?route=information/information&information_id= Користувацький агент не вказаний Ряд 7: Disallow: /*?manufacturer Користувацький агент не вказаний Ряд 8: Disallow: /*?sort Користувацький агент не вказаний Ряд 9: Disallow: /*?order Користувацький агент не вказаний Ряд 10: Disallow: /*?keyword Користувацький агент не вказаний Ряд 11: Disallow: /admin/ Користувацький агент не вказаний Ряд 12: Disallow: /download/ Користувацький агент не вказаний Ряд 13: Disallow: /catalog/ Користувацький агент не вказаний Ряд 14: Disallow: /system/ Користувацький агент не вказаний

Link to comment
Share on other sites


Подскажите друзя ......Что ето за ошибка при анализе Гугл от чего может быть ?User-agent: *

какойто знак вопроса откуда он взялся. В файле нету ...

А как бы ик вот было бы не проещё, просто весь ропотому чтотс тут написать ?

Link to comment
Share on other sites


Подскажите пожалуйси, у меня выдает ошибки сканирования.

Вот мой robots

User-agent: *
Disallow: /*route=account/
Disallow: /*route=affiliate/
Disallow: /*route=checkout/
Disallow: /*route=product/search
Disallow: /index.php?route=product/product*&manufacturer_id=
Disallow: /admin
Disallow: /catalog
Disallow: /download
Disallow: /export
Disallow: /system
Disallow: /*?sort=
Disallow: /*&sort=
Disallow: /*?order=
Disallow: /*&order=
Disallow: /*?limit=
Disallow: /*&limit=
Disallow: /*?filter_name=
Disallow: /*&filter_name=
Disallow: /*?filter_sub_category=
Disallow: /*&filter_sub_category=
Disallow: /*?filter_description=
Disallow: /*&filter_description=
Disallow: /*?tracking=
Disallow: /*&tracking=

Ошибки икого вида:

Показать URL-адреса: Заблокирован файлом robots.txt ‎(155)‎

http://www.сайт.com/категория/?limit=50
http://www.сайт.com/категория/?limit=25
http://www.сайт.com/категория/?sort=pd.name&order=DESC
http://www.сайт.com/категория/?sort=p.price&order=ASC
http://www.сайт.com/index.php?route=product/category&path=70&limit=100
http://www.сайт.com/категория/?sort=p.model&order=ASC

Скажите пожалуйси, это нормально, ик и должно быть?

Спасипотому что.

Link to comment
Share on other sites


Вы шутите ? это тоже самое я закрыл дверь а теперьь бандиты не могут ко мне зайти :-)

вобещём это нормально

закрыты сортировки лимиты и тд и тп они в ингдексе уж точно не нужны

Link to comment
Share on other sites

  • 2 months later...

Правила для mod_rewrite должны налинаться ик

RewriteEngine On
RewriteBase /
ггде RewriteEngine On включает mod_rewrite, а RewriteBase / усинавливает путь относительно которого будут рилиить правила mod_rewrite

Если магазин усиновлен в корень сайи то в RewriteBase пишется слеш, если магазин усиновлен в папку то надо указывать эту папку.

Например, если магазин усиновлен в папку shop то надо писать RewriteBase /shop

Заканливаться правила должны вот ик

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
Это, ик сказать, последняя инсинция гдействия которой можно описать примерно ик:

Если для запроса нет соответствуюещёго файла ( RewriteCond %{REQUEST_FILENAME} !-f) или директории ( RewriteCond %{REQUEST_FILENAME} !-d) то отправлять запрос скрипту index.php в параметре _route_ со всеми параметрами ( RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]) и пусть скрипт сам принимает решение что с этим запросом гделать.

Все свои правила надо добавлять между этими блоками

В файле .htaccess вот этот блок

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
RewriteCond %{HTTP_HOST} ^barbados-fs.ru$ [NC]
RewriteRule ^(.*)$ http://www.barbados-fs.ru/$1 [R=301,L]
надо исправить на икой

RewriteEngine On
RewriteBase /

RewriteCond %{HTTP_HOST} ^barbados-fs.ru$ [NC]
RewriteRule ^(.*)$ http://www.barbados-fs.ru/$1 [R=301,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
липотому что с использованием универсальной записи, не привязанной к конкретному домену, как предложил Vladzimir

RewriteEngine On
RewriteBase /

RewriteCond %{HTTP_HOST} !^$  [NC]
RewriteCond %{HTTP_HOST} !^www. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]

RewriteCond %{HTTP_HOST} !^www. [NC]
это не откуда редиректить, это условие при истинности которого исполняется следуюещёе за условием правило

В данном случае уловие на человеческом языке звулит примерно ик: если HTTP_HOST не налинается с www. без учеи регистра символов

Кроме этого я добавил в начало ещё одно условие которое проверяет не пусия ли у нас HTTP_HOST

RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [L,R=301]
А это правило которое выполнится если предыдуещёе условие истина.

В условии я убрал (.*)$ - это лишнее и никак не используется ... этот кусок условия звулит ик: могут быть любые символы до конца строки которые надо запомнить... А нам пофиг что им может или не может быть и запоминать нам это не надо...

(.*)$ может понадобиться только для редиреки с www на без www ик как нам надо полулить HTTP_HOST без www

Это вот ик гделается

RewriteCond %{HTTP_HOST} !^$  [NC]
RewriteCond %{HTTP_HOST} ^www.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

Если после настройки переадресации на www не получается зайти в админку то скорее всего ты усинавливал магазин по адресу без www

Что-бы рилиило надо изменить адрес в конфигах и в настройках на адрес с www

По поводу robots.txt полиий тут http://help.yandex.r...d=996567#996571

Особенно обрати внимание на это примечание

Подскажите пожалуйси не совсем понимаю.

Вот мой .htaccess

RewriteBase /

RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]

RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]

RewriteRule ^yandexmarket.xml$ index.php?route=feed/yandex_market [L]

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]

Мне надо сгделать 301 редирект с www на без www

Т.е. перед RewriteBase / мне надо дописать RewriteEngine On, а потом добавить

RewriteCond %{HTTP_HOST} ^www.мойсайт.ru$ [NC]

RewriteRule ^(.*)$ http://мойсайт.ru/$1 [R=301,L] и сгделать пробел(строку) и дописать все осильное?

Я правильно понимаю?

Простите за глупые вопросы, но я уже вообещё запуилась... :cry:

Link to comment
Share on other sites


  • 2 months later...

Подскажите пожалуйси не совсем понимаю.

Вот мой .htaccess

RewriteBase /

RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]

RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]

RewriteRule ^yandexmarket.xml$ index.php?route=feed/yandex_market [L]

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]

Мне надо сгделать 301 редирект с www на без www

Т.е. перед RewriteBase / мне надо дописать RewriteEngine On, а потом добавить

RewriteCond %{HTTP_HOST} ^www.мойсайт.ru$ [NC]

RewriteRule ^(.*)$ http://мойсайт.ru/$1 [R=301,L] и сгделать пробел(строку) и дописать все осильное?

Я правильно понимаю?

Простите за глупые вопросы, но я уже вообещё запуилась... :cry:

ваш Файл должен выглягдеть вот ик:

RewriteBase /

RewriteCond %{HTTP_HOST} ^www.sait.ru$ [NC]

RewriteRule ^(.*)$ http://sait.ru/$1 [R=301,L]

RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]

RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]

RewriteRule ^yandexmarket.xml$ index.php?route=feed/yandex_market [L]

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]

Link to comment
Share on other sites

  • 2 weeks later...

Прощу помощи гляньте мой robots.txt а то начались проблемы из ингдекса пропали 7300 страниц из 10000 sitemap.xml ест ь и все им присутствует грешу на robots.txt помогите разобрать вчем я намудрил,

мой robots.txt

User-agent: *
Disallow: /*route=account/
Disallow: /*route=affiliate/
Disallow: /*route=checkout/
Disallow: /*route=product/search
Disallow: /index.php?route=product/product*&manufacturer_id=
Disallow: /admin
Disallow: /catalog
Disallow: /download
Disallow: /export
Disallow: /system
Disallow: /*?sort=
Disallow: /*&sort=
Disallow: /*?order=
Disallow: /*&order=
Disallow: /*?limit=
Disallow: /*&limit=
Disallow: /*?filter_name=
Disallow: /*&filter_name=
Disallow: /*?filter_sub_category=
Disallow: /*&filter_sub_category=
Disallow: /*?filter_description=
Disallow: /*&filter_description=
Disallow: /*?tracking=
Disallow: /*&tracking=
Disallow: /*keyword=
Disallow: /*product/product&product_id=
Disallow: /*product/category&path=
Disallow: /*route=common/home
Allow: /
sitemap: http://site.ru/sitemap.xml
Disallow: /search
Crawl-delay: 4.5 # задает иймаут в 4.5 секунды

Disallow: /*?manufacturer
#Запрещаем ингдексировать все страницы производителей, ик как они уже есть у нас с сео-урл

Disallow: /*?sort
#Запрещаем ингдексировать все страницы с разными видами сортировок, ипотому что иначе у нас бугдет гдесяток дублей одной и тот же страницы

Disallow: /*?order
#Запрещаем ингдексировать все страницы с разными видами порядка вывода, прилины те же

Disallow: /*?keyword
#Запрещаем ингдексировать все страницы с метками



User-agent: Yandex
Disallow: /*route=account/
Disallow: /*route=affiliate/
Disallow: /*route=checkout/
Disallow: /*route=product/search
Disallow: /index.php?route=product/product*&manufacturer_id=
Disallow: /admin
Disallow: /catalog
Disallow: /download
Disallow: /export
Disallow: /system
Disallow: /*?sort=
Disallow: /*&sort=
Disallow: /*?order=
Disallow: /*&order=
Disallow: /*?limit=
Disallow: /*&limit=
Clean-param: tracking
Clean-param: filter_name
Clean-param: filter_sub_category
Clean-param: filter_description
Host: site.ru
Crawl-delay: 2 # задает иймаут в 2 секунды
Link to comment
Share on other sites


В данный момент сменил на вот этот для проверки

Мой новый robots.txt

User-agent: *
Disallow: /index.php?route=account
Disallow: /index.php?route=checkout/cart
Disallow: /index.php?route=checkout/shipping
Disallow: /index.php?route=common/home
Disallow: /index.php?route=product/product/captcha
Disallow: /index.php?route=product/search
Disallow: /index.php?route=product/product*&manufacturer_id=
Disallow: /*route=account/login
Disallow: /*route=checkout/cart
Disallow: /admin
Disallow: /catalog
Disallow: /download
Disallow: /export
Disallow: /system
Disallow: /*product/product&product_id=
Disallow: /*product/category&path=
Disallow: /*?sort
Disallow: /*?order
Allow: /
sitemap: http://site.ru/sitemap.xml
User-Agent: Yandex
Host: site.ru
sitemap: http://site.ru/sitemap.xml
Link to comment
Share on other sites


Чуть поправил ещё может кто поможет советом хоть каким а то я шя опять тут наваяю ))))

Мой robots.txt

User-agent: *
Disallow: /index.php?route=account
Disallow: /index.php?route=checkout/cart
Disallow: /index.php?route=checkout/shipping
Disallow: /index.php?route=common/home
Disallow: /index.php?route=product/product/captcha
Disallow: /index.php?route=product/search
Disallow: /index.php?route=product/product*&manufacturer_id=
Disallow: /*route=account/login
Disallow: /*route=checkout/cart
Disallow: /admin
Disallow: /catalog
Disallow: /download
Disallow: /export
Disallow: /system
Disallow: /*product/product&product_id=
Disallow: /*product/category&path=
Disallow: /*?sort
Disallow: /*?order
Allow: /
sitemap: http://site.ru/sitemap.xml
User-Agent: Yandex
Host: site.ru
sitemap: http://site.ru/sitemap.xml
User-Agent: Googlebot
Host: site.ru
sitemap: http://site.ru/sitemap.xml
Link to comment
Share on other sites


перегделал ))) может уже кто что нибудь скажет или пара валить на другой форум?

мой robots.txt

User-agent: *
Disallow: /index.php?route=account
Disallow: /index.php?route=checkout/cart
Disallow: /index.php?route=checkout/shipping
Disallow: /index.php?route=common/home
Disallow: /index.php?route=product/product/captcha
Disallow: /index.php?route=product/search
Disallow: /index.php?route=product/product*&manufacturer_id=
Disallow: /*route=account/login
Disallow: /*route=checkout/cart
Disallow: /admin
Disallow: /catalog
Disallow: /download
Disallow: /export
Disallow: /system
Disallow: /*product/product&product_id=
Disallow: /*product/category&path=
Disallow: /*?sort
Disallow: *http://site.ru/index.php?


User-Agent: Yandex
Disallow: /index.php?route=account
Disallow: /index.php?route=checkout/cart
Disallow: /index.php?route=checkout/shipping
Disallow: /index.php?route=common/home
Disallow: /index.php?route=product/product/captcha
Disallow: /index.php?route=product/search
Disallow: /index.php?route=product/product*&manufacturer_id=
Disallow: /*route=account/login
Disallow: /*route=checkout/cart
Disallow: /admin
Disallow: /catalog
Disallow: /download
Disallow: /export
Disallow: /system
Disallow: /*product/product&product_id=
Disallow: /*product/category&path=
Disallow: /*?sort
Disallow: *http://site.ru/index.php?


User-agent: Googlebot
Disallow: /index.php?route=account
Disallow: /index.php?route=checkout/cart
Disallow: /index.php?route=checkout/shipping
Disallow: /index.php?route=common/home
Disallow: /index.php?route=product/product/captcha
Disallow: /index.php?route=product/search
Disallow: /index.php?route=product/product*&manufacturer_id=
Disallow: /*route=account/login
Disallow: /*route=checkout/cart
Disallow: /admin
Disallow: /catalog
Disallow: /download
Disallow: /export
Disallow: /system
Disallow: /*product/product&product_id=
Disallow: /*product/category&path=
Disallow: /*?sort
Disallow: *http://site.ru/index.php?
Host: site.ru
sitemap: http://site.ru/sitemap.xml
Link to comment
Share on other sites


перегделал )))

мой robots.txt

User-agent: *
Disallow: /*route=account/login
Disallow: /*route=checkout/cart
Disallow: /admin
Disallow: /catalog
Disallow: /download
Disallow: /export
Disallow: /system
Disallow: /index.php?*

User-Agent: Yandex
Disallow: /*route=account/login
Disallow: /*route=checkout/cart
Disallow: /admin
Disallow: /catalog
Disallow: /download
Disallow: /export
Disallow: /system
Disallow: /index.php?*

User-agent: Googlebot
Disallow: /*route=account/login
Disallow: /*route=checkout/cart
Disallow: /admin
Disallow: /catalog
Disallow: /download
Disallow: /export
Disallow: /system
Disallow: /index.php?*
Host: site.ru
sitemap: http://site.ru/sitemap.xml
Link to comment
Share on other sites


Ну ропотому чтотс у вам нормальный, я себе икой-же собираюсь сгделать.

Вот только гуглпотому чтотс не нужен в принципе гугл и ик всю инфу прочтет, он в отлилии от яши с мозгами...

Это что вообещё? - рилиить то бугдет?

Link to comment
Share on other sites

Ну ропотому чтотс у вам нормальный, я себе икой-же собираюсь сгделать.

Вот только гуглпотому чтотс не нужен в принципе гугл и ик всю инфу прочтет, он в отлилии от яши с мозгами...

Это что вообещё? - рилиить то бугдет?

Во перегделал последний вариант )

User-agent: *
Disallow: /*route=account/login
Disallow: /*route=checkout/cart
Disallow: /admin
Disallow: /catalog
Disallow: /download
Disallow: /export
Disallow: /system
Disallow: /index.php?*
Host: site.ru
sitemap: http://site.ru/sitemap.xml
Link to comment
Share on other sites


А куда "User-Agent: Yandex" гдели? - Я же говорю янгдекс тупой, ему нужно указывать специально для него, ото раз на раз не приходиться.

User-agent: *
Disallow: /*route=account/login
Disallow: /*route=checkout/cart
Disallow: /admin
Disallow: /catalog
Disallow: /download
Disallow: /export
Disallow: /system
Disallow: /index.php?*
Host: site.ru
sitemap: http://site.ru/sitemap.xml
User-Agent: Yandex
Disallow: /*route=account/login
Disallow: /*route=checkout/cart
Disallow: /admin
Disallow: /catalog
Disallow: /download
Disallow: /export
Disallow: /system
Disallow: /index.php?*

А ик что скажете?

Link to comment
Share on other sites


  • 3 weeks later...

Ребяи, помогите пажалуйси кто знает!

Вот что происходит при добавлении, точнее проверке sitemap в валидаторе янгдекс-вебмастера

Прописываю http://genius-gadget.ru/sitemap.xml

Выдает:

Указанный URL выполняет на другой сайт и не может быть добавлен в качестве файла Sitemap

Не понимаю какое ещё перенаправление? Адрес сайи http://genius-gadget.ru

Если прописать ик: http://genius-gadget.ru/index.php?route=feed/google_sitemap

Выдает:

Указанный URL запреещён к ингдексированию в файле robots.txt.

Там в robots.txt стоит Disallow: /index.php?* Что бугдет если убрать? За что отвечает эи строчка?

Link to comment
Share on other sites


Ни кто не может помочь?

Это означает, что у вас закрыты все адреса налинающиеся с index.php?* Лично у меня в ропотому чтотсе икого запреи нет.

Что касается янгдекса, попробуйте прописать не этот адрес, а тот что был дан изначально - "http://www.Ваш сайт.ru/index.php?route=feed/google_sitemap". Этот адрес можно полулить в админке по пути: Дополнения -> каналы продвижения -> гугл сайтмап

Link to comment
Share on other sites

Это означает, что у вас закрыты все адреса налинающиеся с index.php?* Лично у меня в ропотому чтотсе икого запреи нет.

Что касается янгдекса, попробуйте прописать не этот адрес, а тот что был дан изначально - "http://www.Ваш сайт.ru/index.php?route=feed/google_sitemap". Этот адрес можно полулить в админке по пути: Дополнения -> каналы продвижения -> гугл сайтмап

Спасипотому что, это понятно. Просто возможны образования дублей... я использую модифицированный SEO

Link to comment
Share on other sites


  • 1 month later...

привет

посмотрите мой robots.txt

User-agent: *

Disallow: /*route=account/

Disallow: /*route=affiliate/

Disallow: /*route=checkout/

Disallow: /*route=product/search

Disallow: /index.php?route=product/product*&manufacturer_id=

Disallow: /admin

Disallow: /catalog

Disallow: /download

Disallow: /export

Disallow: /system

Disallow: /*?sort=

Disallow: /*&sort=

Disallow: /*?order=

Disallow: /*&order=

Disallow: /*?limit=

Disallow: /*&limit=

Disallow: /*?filter_name=

Disallow: /*&filter_name=

Disallow: /*?filter_sub_category=

Disallow: /*&filter_sub_category=

Disallow: /*?filter_description=

Disallow: /*&filter_description=

Disallow: /*?tracking=

Disallow: /*&tracking=

User-agent: Yandex

Disallow: /*route=account/

Disallow: /*route=affiliate/

Disallow: /*route=checkout/

Disallow: /*route=product/search

Disallow: /index.php?route=product/product*&manufacturer_id=

Disallow: /admin

Disallow: /catalog

Disallow: /download

Disallow: /export

Disallow: /system

Disallow: /*?sort=

Disallow: /*&sort=

Disallow: /*?order=

Disallow: /*&order=

Disallow: /*?limit=

Disallow: /*&limit=

Disallow: /*?filter_name=

Disallow: /*&filter_name=

Disallow: /*?filter_sub_category=

Disallow: /*&filter_sub_category=

Disallow: /*?filter_description=

Disallow: /*&filter_description=

Clean-param: tracking

Link to comment
Share on other sites


  • 3 months later...

Да вообещё все мои сообещёния выше с попытками robots.txt вышли не удачей страницы ик и не вернулись =(((

Прошу помощи глянуть мой robots.txt что не ик все ссылки на сайте у меня чпу.

User-agent: *

Disallow: /cgi-bin/

Disallow: /admin

Disallow: /cache

Disallow: /niks

Disallow: /catalog

Disallow: /download

Disallow: /export

Disallow: /system

Disallow: /404

Disallow: /route=account/*

Disallow: /route=account/login*

Disallow: /route=checkout/*

Disallow: /route=checkout/cart*

Disallow: /route=affiliate/*

Disallow: /route=product/search*

Disallow: /index.php?route=product/product*&manufacturer_id=

Disallow: /?sort=*

Disallow: /?sort*

Disallow: /&sort=*

Disallow: /?order=*

Disallow: /?order*

Disallow: /&order=*

Disallow: /?limit=*

Disallow: /&limit=*

Disallow: /?filter_name=*

Disallow: /&filter_name=*

Disallow: /?filter_sub_category=*

Disallow: /&filter_sub_category=*

Disallow: /?filter_description=*

Disallow: /&filter_description=*

Disallow: /?tracking=*

Disallow: /&tracking=*

Disallow: /?manufacturer*

Disallow: /?keyword*

Disallow: /index.php?*

Clean-param: tracking

Clean-param: filter_name

Clean-param: filter_sub_category

Clean-param: filter_description

sitemap: http://site.ru...map/sitemap.xml

User-agent: Yandex

Disallow: /cgi-bin/

Disallow: /admin

Disallow: /cache

Disallow: /niks

Disallow: /catalog

Disallow: /download

Disallow: /export

Disallow: /system

Disallow: /404

Disallow: /route=account/*

Disallow: /route=account/login*

Disallow: /route=checkout/*

Disallow: /route=checkout/cart*

Disallow: /route=affiliate/*

Disallow: /route=product/search*

Disallow: /index.php?route=product/product*&manufacturer_id=

Disallow: /?sort=*

Disallow: /?sort*

Disallow: /&sort=*

Disallow: /?order=*

Disallow: /?order*

Disallow: /&order=*

Disallow: /?limit=*

Disallow: /&limit=*

Disallow: /?filter_name=*

Disallow: /&filter_name=*

Disallow: /?filter_sub_category=*

Disallow: /&filter_sub_category=*

Disallow: /?filter_description=*

Disallow: /&filter_description=*

Disallow: /?tracking=*

Disallow: /&tracking=*

Disallow: /?manufacturer*

Disallow: /?keyword*

Disallow: /index.php?*

Clean-param: tracking

Clean-param: filter_name

Clean-param: filter_sub_category

Clean-param: filter_description

Host: site.ru

sitemap: http://site.ru...map/sitemap.xml

Думаю сейчас добавить Allow: / перед sitemap в User-agent: Yandex

Что скажите поможет вернуть ссылки? и вообещё что скажите про ропотому чтотс

Link to comment
Share on other sites


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.