Skip to content

Latest commit

 

History

History
94 lines (67 loc) · 2.29 KB

README.jp.md

File metadata and controls

94 lines (67 loc) · 2.29 KB

Middleman::Robots

Gem Version Build Status

middleman-robotsMiddleman の拡張機能です。 config.rb に記述されたルールに基いて robots.txt を作ります。

Installation

Gemfile に次の行を追加してください:

gem 'middleman-robots'

コマンドを実行します:

$ bundle

Gemfile を使わずにインストールする場合は次のコマンドを実行してください:

$ gem install middleman-robots

使い方

基本的な使い方です:

# config.rb
activate :robots, 
  :rules => [
    {:user_agent => '*', :allow => %w(/)}
  ],
  :sitemap => "http://example.com/sitemap.xml"

作成される robots.txt:

User-Agent: *
Allow: /

Sitemap: http://example.com/sitemap.xml

オプションには :rules [{:user_agent(string), :allow(array), :disallow(array)}] と :sitemap を指定できます。すべてのオプションを指定すると次のようになります:

# config.rb
activate :robots,
  :rules => [
    {
      :user_agent => 'Googlebot',
      :disallow =>  %w(tmp/ /something/dir/file_disallow.html),
      :allow =>  %w(allow/ /something/dir/file_allow.html)
    },
    {
      :user_agent => 'Googlebot-Image',
      :disallow =>  %w(tmp/ /something/dir/file_disallow.html),
      :allow =>  %w(allow/ /something/dir/file_allow.html)
    }
  ],
  :sitemap => "http://example.com/sitemap.xml"

作成される robots.txt:

User-Agent: Googlebot
Disallow: /tmp/
Disallow: /something/dir/file_disallow.html
Allow: /allow/
Allow: /something/dir/file_allow.html

User-Agent: Googlebot-Image
Disallow: /tmp/
Disallow: /something/dir/file_disallow.html
Allow: /allow/
Allow: /something/dir/file_allow.html

Sitemap: http://example.com/sitemap.xml

Contributing

  1. Fork it ( https://github.com/yterajima/middleman-robots/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request