如何在 Django 中将 Flatpage 设置为主页
如何将平面页面设置为主页?
我的 urls.py
(r'', include('django.contrib.flatpages.urls')),
在管理部分中,我将 Flatpage 的 URL 设置为“/”。
我收到这个错误
Firefox 已检测到服务器 正在重定向此请求 以永远不会的方式解决 完成。
我猜测将 URL 设置为“/”是错误的,但找不到正确方法的示例。
How can I set a Flatpage as the Homepage?
My urls.py is
(r'', include('django.contrib.flatpages.urls')),
In the admin section I set the URL of the Flatpage to "/".
I get this error
Firefox has detected that the server
is redirecting the request for this
address in a way that will never
complete.
I'm guessing setting the URL to "/" is wrong, but can't find an example of the proper way to do it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我从 urls.py 中删除了该条目,这似乎已经修复了它。
I removed the entry from the urls.py and this seems to have fixed it.