17 lines
478 B
Plaintext
17 lines
478 B
Plaintext
# Rules for Web crawlers to follow while crawling https://cakefoot.dank.game
|
|
#
|
|
# Allow main page, external resources (JS, fonts), RSS feed, and the JS game distribution.
|
|
#
|
|
# Allow query strings, so referral links are followed. For example, https://cakefoot.dank.game/?from=AppAgg.com&...
|
|
# Not sure if this is good for SEO or not, though.
|
|
|
|
User-agent: *
|
|
Allow: /$
|
|
Allow: /favicon.ico
|
|
Allow: /index.html
|
|
Allow: /ext/
|
|
Allow: /dist/wasm/
|
|
Allow: /arcade.html
|
|
Allow: /?*
|
|
Disallow: /
|