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.
我有一个 laravel 项目,我的根目录应该返回静态 html(它是一个 ajax 应用程序)。
我考虑将我的静态 html 放在公共文件夹中,然后使用路由返回它。这是一个好方法吗?如果是这样,我如何在 php 中返回一个文件?
你可以毫无困难地在 Laravel 视图中使用静态 HTML 代码。无需将它们放在其他地方。这样你仍然可以使用所有方便的自动路由和链接功能,这些功能让 Laravel 4 如此出色。
分离静态和动态页面根本没有意义。例如,您可能希望稍后在静态页面中插入动态内容,因此最好不要将它们分开。即使它们保持静态,为什么要放弃使用 Blade 模块化页面的可能性?