Vote #79037
完了Add project id to robots.txt
0%
説明
Bots found activities by project number and traverse to the whole history:
redmine:443 66.249.76.119 - - [02/Jan/2018:05:42:49 +0000] "GET /redmine/projects/3/activity?from=1979-03-13&show_files=1&user_id=3 HTTP/1.1" 200 8090 "-" "Mozilla/5.0 (compatible; Googlebot/2.1;)"
robots.txt looks like:
User-agent: * Disallow: /redmine/projects/support/repository Disallow: /redmine/projects/support/issues Disallow: /redmine/projects/support/activity Disallow: /redmine/issues/gantt Disallow: /redmine/issues/calendar Disallow: /redmine/activity Disallow: /redmine/search
Expected:
User-agent: * Disallow: /redmine/projects/support/repository Disallow: /redmine/projects/support/issues Disallow: /redmine/projects/support/activity Disallow: /redmine/projects/3/repository Disallow: /redmine/projects/3/issues Disallow: /redmine/projects/3/activity Disallow: /redmine/issues/gantt Disallow: /redmine/issues/calendar Disallow: /redmine/activity Disallow: /redmine/search
journals
I thinks it's better to block the whole numeric project:
<pre>
User-agent: *
Disallow: /redmine/projects/support/repository
Disallow: /redmine/projects/support/issues
Disallow: /redmine/projects/support/activity
Disallow: /redmine/projects/3
Disallow: /redmine/issues/gantt
Disallow: /redmine/issues/calendar
Disallow: /redmine/activity
Disallow: /redmine/search
</pre>
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Try this patch.
--------------------------------------------------------------------------------
It works. Thanks.
<pre>
User-agent: *
Disallow: /redmine/projects/support/repository
Disallow: /redmine/projects/support/issues
Disallow: /redmine/projects/support/activity
Disallow: /redmine/projects/3/repository
Disallow: /redmine/projects/3/issues
Disallow: /redmine/projects/3/activity
Disallow: /redmine/issues/gantt
Disallow: /redmine/issues/calendar
Disallow: /redmine/activity
Disallow: /redmine/search
</pre>
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
I think it is no problem because project id is disclosed in project.xml and robots.txt hides non public projects.
source:trunk/app/controllers/welcome_controller.rb@17189#L26
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------