gpt4 book ai didi

php - 如何使用 Laravel 服务 index.html?

转载 作者:可可西里 更新时间:2023-11-01 13:40:01 25 4
gpt4 key购买 nike

我很难理解有人如何使用 Laravel 加载 index.html 文件。它似乎只适用于 index.php,这不是我想要的。

这里有个问题:

我有两个文件夹clientserver。我的 server 文件夹包含整个 Laravel 应用程序。我的 client 目录包含 AngularJS 应用程序。 (我不能使用public 目录)

我希望 Laravel 提供 index.html 以及 client 目录中的所有静态文件。

更改 'public' => __DIR__.'/../public' 确实有些效果,但随后它会破坏我的所有路由,即无论我为 URL index.html 输入什么内容。 html 加载了损坏的静态 Assets 。例如 /api/users 不再返回 JSON 对象,而是返回相同的 index.html

最佳答案

我不确定你的文件结构是怎么回事,但是,要通过你可以使用的 php 引擎加载 html 文件:

View::addExtension('html', 'php');

然后,

Route::get('/', function()
{
return View::make('index');
});

应该返回 index.html。

关于php - 如何使用 Laravel 服务 index.html?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25418156/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com