Django - 使用 URL 重定向设置附属链接

发布于 2024-10-10 01:51:07 字数 292 浏览 1 评论 0原文

有谁知道有什么更好的方法可以用隐形链接或短链接替换长联属网址,以便用户只能看到缩短的链接。

像这样的东西: “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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

⒈起吃苦の倖褔 2024-10-17 01:51:07

如果您希望将来能够在此基础上进行构建,您可以创建自己的简单模型:

class AffiliateLink(models.Model):
    slug = models.SlugField(unique=True)
    full_url = models.URLField()

然后创建一个视图来执行重定向:

def affiliate_link(request, slug):
    link = get_object_or_404(AffiliateLink, slug=slug)
    return redirect(link.full_url)

然后设置 urls 文件:

(r'^affiliates/(?P<slug>[^/]+/', 'myapp.views.affiliate_link'),

然后就可以了。

If you want to be able to build on this in the future, you could create your own simple model:

class AffiliateLink(models.Model):
    slug = models.SlugField(unique=True)
    full_url = models.URLField()

Then create a view to do the redirection:

def affiliate_link(request, slug):
    link = get_object_or_404(AffiliateLink, slug=slug)
    return redirect(link.full_url)

Then setup the urls file:

(r'^affiliates/(?P<slug>[^/]+/', 'myapp.views.affiliate_link'),

And that it.

熟人话多 2024-10-17 01:51:07

Django 附带了一个额外的重定向应用

Django comes with an additional redirects app.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文