0

こんにちは、私が間違っていなければ、opencart の robots.txt ファイルはこれになります

User-agent: *
Disallow: /*&limit
Disallow: /*&sort
Disallow: /*?route=checkout/
Disallow: /*?route=account/
Disallow: /*?route=product/search
Disallow: /*?route=affiliate/
Allow: /

サイトからカテゴリのインデックスを解除したいので、robots.txt ファイルでどのコードを使用してそのカテゴリを Google から削除しますか。ありがとう。

4

1 に答える 1

0

開ける/catalog/controller/product/category.php

この行を見つけます

if ($category_info) {

これを追加した後の新しい行に

if ($category_info['category_id'] == 123) {
     header("X-Robots-Tag: noindex", true);
}

123インデックス作成を停止するカテゴリ ID に変更する

于 2013-07-22T10:36:20.713 に答える