[Fixed]-How to show flatpages with a single URL in Django?

1👍

You must have the fallback middleware installed in your MIDDLEWARE_CLASSES setting:

'django.contrib.flatpages.middleware.FlatpageFallbackMiddleware'

Remove it, and then it will only work on the prefix you have specified.

Leave a comment