Skip to content

A Wagtail package to automatically submit published pages for search engine indexing.

License

Notifications You must be signed in to change notification settings

RealOrangeOne/wagtail-indexnow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Wagtail Indexnow

CI PyPI PyPI - Python Version PyPI - License

A Wagtail package to automatically submit published pages for search engine indexing.

This package implements the IndexNow standard (which is also used by Cloudflare's Crawler Hints).

Whenever a page is published, a ping is sent to supporting search engines to inform them of a content change. To reduce spamming, pages which have been published within the last 10 minutes are ignored.

Installation

pip install wagtail-indexnow

Then, add wagtail_indexnow to INSTALLED_APPS.

Finally, register the required URLs (Note that these must be loaded without a prefix):

urlpatterns += [path("", include("wagtail_indexnow.urls"))]