密码重置链接重定向以解释域页



重置密码将我重定向到此页面

,但我也在使用.org域。因此,如果这个域的问题是我该怎么办?

TIME_ZONE = 'Asia/Kolkata'
# https://docs.djangoproject.com/en/dev/ref/settings/#language-code
LANGUAGE_CODE = 'en-us'
# https://docs.djangoproject.com/en/dev/ref/settings/#site-id
SITE_ID = 1
# https://docs.djangoproject.com/en/dev/ref/settings/#use-i18n
USE_I18N = True
# https://docs.djangoproject.com/en/dev/ref/settings/#use-l10n
USE_L10N = True
# https://docs.djangoproject.com/en/dev/ref/settings/#use-tz
USE_TZ = True

如果您在INSTALLED_APPS中具有django.contrib.sites,则使用默认站点对象生成密码RESET链接。您应该能够在管理员的"站点"部分中对其进行编辑。

最新更新