如何在刀片模板中获取路由()函数以返回正义'/some/path'而不是' http://blahblah.com/some/path'?
我的模板代码看起来像这样:
{{ route('about') }}
似乎我缺少方程式的一部分。
更新后出现了问题 - 现在我有各种各样的“混合内容”安全问题,因为某些路径是http://
,有些是https:// 。
My template code looks like this:
{{ route('about') }}
It seems like I'm missing part of the equation.
The problem popped up after an update—and now I am have all sorts of 'mixed content' security problems, because some paths are http://
and some are https://
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
路由
函数返回默认值中的绝对URL。如果您需要获得相对链接,则需要将第三个参数作为
false
:The
route
function returns the absolute URL in default.If you need to get the relative link, you need to pass the third parameter as
false
: