这些设备都在同一个局域网上:
- Ubuntu 服务器
- 赢得 10 台电脑
- 苹果手机
- 安卓
在 Ubuntu 服务器上,该/etc/hosts
文件具有:
127.0.0.1 rcw.lt
同样在 Ubuntu 服务器上,有一个由 nginx 托管的 Laravel 应用程序:server_name rcw.lt;
.
我的 rcw.lt 应用程序的/
主页路由使用重定向(请参阅https://laravel.com/docs/8.x/redirects和https://laravel.com/docs/8.x/helpers#method-redirect) .
我跑lt --port 80 --local-host rcw.lt &
。
什么不起作用:
- 从 Win 10 或 iPhone 或 Android 浏览到为 rcw.lt 应用程序生成的 URL(例如https://fat-tiger-93.loca.lt)时,它总是尝试重定向到https://rcw.lt(并说 ERR_CONNECTION_REFUSED)。
什么有效:
- 我可以浏览到提供的生成 URL 并在其上附加特定路径(例如https://fat-tiger-93.loca.lt/some-specific-route),并且它可以工作。或者我可以从
/
路由中删除重定向(我不想这样做)。
有任何想法吗?
这是 Laravel 重定向工作方式的问题吗?还是localtunnel的问题?有解决方法吗?
我真的很感谢你的帮助。:-)