作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 https://docs.djangoproject.com/en/dev/ref/contrib/sitemaps/?from=olddocs .
我有一个从 api.mydomain.me 为域生成的站点地图:mydomain.com。
我可以使用 django 指定一个基本 url 吗?
现在使用 location() 方法返回:
api.mydomain.me/page/3123
代替
mydomain.com/page/3123
这可能吗?
谢谢。
最佳答案
解决了,我重新定义了自己的get_urls。
有用:
class MySitemap(Sitemap):
changefreq = "never"
priority = 0.5
location = ""
def get_urls(self, site=None, **kwargs):
site = Site(domain='mydomain.com', name='mydomain.com')
return super(MySitemap, self).get_urls(site=site, **kwargs)
def items(self):
return MyObj.objects.all().order_by('pk')[:1000]
def lastmod(self, obj):
return obj.timestamp
关于Django站点地图更改基本网址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10391151/
leaflet:一个开源并且对移动端友好的交互式地图 JavaScript 库 中文文档: https://leafletjs.cn/reference.html 官网(英文): ht
我是一名优秀的程序员,十分优秀!