使用旧 Laravel 5.4 附加新网址
Posted
技术标签:
【中文标题】使用旧 Laravel 5.4 附加新网址【英文标题】:Append the new url with old Laravel 5.4 【发布时间】:2018-04-08 14:18:58 【问题描述】:我是 laravel 5.4 的新手 我的问题是我必须将新的网址附加到现有的网址中。
例如,如果浏览器的 URL 为“http://localhost/manager/public/file/5”,则单击按钮时,新 URL 应为 http://localhost/manager/public/file/5/employee。
我通过“Route::get('/file/bId/employee','EmployeeController@som');”实现了这一点 如果我在浏览器中手动点击 url,它就可以正常工作。
问题是我使用 url('employee') 生成 url "http://localhost/manager/public/employee"。
【问题讨论】:
你能分享一些代码吗? 【参考方案1】:请使用/employee
,/
很重要
url('/employee')
【讨论】:
以上是关于使用旧 Laravel 5.4 附加新网址的主要内容,如果未能解决你的问题,请参考以下文章
在laravel 5.4(存储文件夹)中更改默认的“符号链接”文件夹
如何将我的 laravel 5.0 项目直接升级到 5.4?