mirror of https://github.com/aredn/aredn.git
feature: Instruct search engines not to index node pages
Provide HTTP header to search engines not to index the page. Eventually we will likely want to add nofollow and a robots file but first we need to get this pushed out and into search engine hands so they delist the entires that may already be cached. Change-Id: I47a68fcc8fb69c43c3f1bbe2b8a04a3e8d51571a
This commit is contained in:
parent
7de59de3b9
commit
3962465066
|
@ -61,6 +61,7 @@ sub html_header
|
|||
print "<meta http-equiv='expires' content='0'>\n";
|
||||
print "<meta http-equiv='cache-control' content='no-cache'>\n";
|
||||
print "<meta http-equiv='pragma' content='no-cache'>\n";
|
||||
print "<meta name='robots' content='noindex'>";
|
||||
|
||||
# set up the style sheet
|
||||
mkdir "/tmp/web" unless -d "/tmp/web"; # make sure /tmp/web exists
|
||||
|
|
Loading…
Reference in New Issue