Django - 使用 URL 重定向设置附属链接
有谁知道有什么更好的方法可以用隐形链接或短链接替换长联属网址,以便用户只能看到缩短的链接。
像这样的东西: “anothersite.com/offer.html/affiliate_id=001” 披着这样的外衣: “http://site.com/click/offer”
假设如果有更多这样的附属链接,设置重定向将很容易用更多模式填充 urls.py。 Django 的内置通用视图提供了设置(外部)URL 重定向应用程序的方法,但只是想知道是否有更好的方法可以在不填充 .htaccess 或 urls.py 的情况下执行此操作。
Does anyone know of any better ways to replace long affiliate URL's with cloaked links or short, such that users only see shortened links.
Something like this :
"anothersite.com/offer.html/affiliate_id=001"
cloaked like this:
"http://site.com/click/offer"
Assuming if there more affiliate links like this, setting up redirection would easily fill up urls.py with more patterns. Django’s built-in generic views provide ways to setup (external) URL redirection applications but just wondering whether there are any better ways to do this without filling the .htaccess or urls.py.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您希望将来能够在此基础上进行构建,您可以创建自己的简单模型:
然后创建一个视图来执行重定向:
然后设置 urls 文件:
然后就可以了。
If you want to be able to build on this in the future, you could create your own simple model:
Then create a view to do the redirection:
Then setup the urls file:
And that it.
Django 附带了一个额外的重定向应用。
Django comes with an additional redirects app.