使用这个https我可以将我的整个项目转换为 https。
但我只想将一页转换为 https。所有其他页面都应该在 http 中。
例如我有以下网址
url(r'^related-product/$', related_product),
url(r'^payment-status/$', paymentStatus),
url(r'^get-kitchenstyle-images/$', singleKitchenStylesImages),
url(r'^makepayment/$', makepayment),
url(r'^add-accessory-to-session/$', add_accessory_to_session),
我只需要在 https 中调用 makepayment。所有其他网址为 http
这可能吗 ?如果可能的话我该怎么做