Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Lumen 5.5 并在启动方法中使用 app/providers/appServiceProvider.php 下的以下代码块。
\URL::forceSchema('https');
它与早期版本的 Lumen 5.2 兼容
有没有办法在不使用 mod_rewrite 和中间件方法的情况下解决这个问题。
看来该函数已将名称从 更改forceSchema为forceScheme。
forceSchema
forceScheme
您正在使用Lumen 5.2.
Lumen 5.2
在 Laravel 5.2 或更早版本中,它运行良好。
在 Laravel 5.4 或更高版本中它更改为
\URL::forceScheme('https');