上传到服务器时
/app
/public_html
/vendor
/writable
并使用 https://server.com/home 我看到欢迎页面,但是当我使用 https://server.com/pages 时,我收到错误“CodeIgniter\View\Exceptions\ViewException” 无效文件:pages/home.php'SYSTEMPATH/Exceptions/FrameworkException.php 第 21 行
public static function forEnabledZlibOutputCompression()
15 {
16 return new static(lang('Core.enabledZlibOutputCompression'));
17 }
18
19 public static function forInvalidFile(string $path)
20 {
21 return new static(lang('Core.invalidFile', [$path]));
22 }
23
24 public static function forCopyError(string $path)
25 {
26 return new static(lang('Core.copyError', [$path]));
27 }
28
return view('users/signin',$data);
<?= $this->extend('layouts/signin') ?>
这是 Slash 问题引起的,我之前也遇到过同样的问题,现在一切都好了