大家好,我是 laravel 的新手,我希望有人可以帮助我解决我的问题。我创建了一个 laravel 项目。之后,我使用 softaculous 将其导入到 cpanel。然后,我根据我在网上研究的内容进行了一些更改,以避免显示像 .env 这样的重要文件。我创建了一个相对于 public_html 的文件夹,假设文件夹名称是“tamangbilang”,我将除 index.php 之外的几乎所有代码都放在其中。在我的 public_html 文件夹中,我有另一个名为“tamangbilang”的文件夹,我的 index.php 位于其中。我已经按照这个指令https://dev.to/pushpak1300/deploying-laravel7-app-on-shared-hosting-hostinger-31cj唯一的区别是我在public_html中放了另一个文件夹。我也对索引做了一些更改.php 代码
require __DIR__.'/../../tamangbilang/vendor/autoload.php';
$app = require_once __DIR__.'/../../tamangbilang/bootstrap/app.php';
在我的登录页面(我的第一页)上一切正常,但是当我尝试登录时,出现错误。
The requested URL was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
似乎路线之间的连接丢失了。我做了进一步的测试,我注意到只有在 url 中的路由之前有 index.php 时,代码才能正常工作。例子
http://my-sample-domain.org/tamangbilang/index.php/login
PS 我无权访问 ssh。