我遇到与Laravel路由有关的问题。例如,如果我的网站是xyz.com
,并且我的主页<a href="https://www.instagram.com/myprofile/">Instagram</a>
上有链接。
然后它不会将我带到Instagram链接而不是打开此链接而是打开wwww.servername/laravel/public/https://www.instagram.com/myprofile/
。如何打开新链接?
答案 0 :(得分:1)
您的链接是使用刀片功能生成的。但是,根据上述评论中的讨论,链接不在刀片文件中,因此不会调用刀片功能,特别是在这种情况下url
。
请确保以下内容:
{{
和}}
答案 1 :(得分:0)
<a href="{{ url('/') }}">Homepage</a>
- 这将把你带到主页
<a href="{{ url('http://stackoverflow.com/questions/18669259/change-opacity-on-hover') }}">This post</a>
- 这个帖子
最好的问候