Last active
October 24, 2015 04:06
-
-
Save ryoakg/b2844412a08ec8280031 to your computer and use it in GitHub Desktop.
クローラーに無視してらえる様に head > meta[name=robots] を書き換え
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'nokogiri' | |
open('xxx.html') {|f| | |
break if doc.css('head').empty? | |
meta=Nokogiri::XML::Node::new('meta', doc) | |
meta['name']='robots' | |
meta['content']='noindex,nofollow,noarchive' | |
doc.css('head')[0].add_child(meta) | |
open(output_filename, mode='w'){|f| | |
html_str = doc.to_html(encoding: 'UTF-8') | |
f.print html_str | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment