所以我有一个服务器,我需要运行 2 个 Laravel 应用程序:1 个 api,1 个 Web 客户端。使用路由的工作方式,我必须将 API 公共目录设置为 Apache 配置中的文档根目录。
然后,这会阻止 Web 客户端进行更正。显然我搞砸了,因为我不应该需要 2 个 Apache 实例或服务器。而且我不希望 Web 客户端文件夹结构与 API 文件夹结构相结合。现在它看起来像这样:
-ampps
-otherAmppsFolders
-www
-api
-otherLaravelFolders
-public [DocumentRoot set here]
-moreLaravelFolders
-myWebSite
-otherLaravelFolders
-public [Cannot access this then]
-moreLaravelFolders
FYSA:我在 Windows 上使用 Ampps。