2

http://www.frobee.com/robots-txt-checkで自分のサイトを実行したところ、いくつかのエラーが返されました。

ここに私の robots.txt ファイルがあります:

User-agent: *
Disallow: /admin/

# Allowable Index
Allow: /*?p=
Allow: /blog/
Allow: /catalog/seo_sitemap/category/
Allow: /catalogsearch/result/

# Directories
Disallow: /404/
Disallow: /app/
Disallow: /cgi-bin/
Disallow: /downloader/
Disallow: /includes/
Disallow: /js/
Disallow: /lib/
Disallow: /magento/
Disallow: /media/
Disallow: /pkginfo/
Disallow: /report/
Disallow: /skin/
Disallow: /stats/
Disallow: /var/

# Paths (clean URLs)
Disallow: /index.php/
Disallow: /catalog/product_compare/
Disallow: /catalog/category/view/
Disallow: /catalog/product/view/
Disallow: /catalogsearch/
Disallow: /checkout/
Disallow: /control/
Disallow: /contacts/
Disallow: /customer/
Disallow: /customize/
Disallow: /newsletter/
Disallow: /poll/
Disallow: /review/
Disallow: /sendfriend/
Disallow: /tag/
Disallow: /wishlist/

 # Files
 Disallow: /cron.php
 Disallow: /cron.sh
 Disallow: /error_log
 Disallow: /install.php
 Disallow: /LICENSE.html
 Disallow: /LICENSE.txt
 Disallow: /LICENSE_AFL.txt
 Disallow: /STATUS.txt

 # Paths (no clean URLs)
 Disallow: /*.js$
 Disallow: /*.css$
 Disallow: /*.php$
 Disallow: /*?p=*&
 Disallow: /*?SID=
 Disallow: /*?*

私が得るエラーは「ユーザーエージェントディレクティブがありません!」です。Allow が見つかりました」と「User-agent ディレクティブがありません! Disallow」が見つかりました。なぜかわからないのですが?

ありがとう

4

1 に答える 1

1

robots.txt では、複数のディレクティブを区切るために空行が使用されています。空行を削除またはコメントするだけで問題ありません。

于 2012-10-17T10:00:28.657 に答える