2

我在我的网站上添加了 SSL,并将绝对路径中的“http://”更新为“https://”。

我在我的相关 php 包含中收到错误。

代码:

include("connection.php");

错误信息

警告: include(connection.php)[function.include]:无法打开流:第 57 行的 pathTo/includes/index_header.php 中没有此类文件或目录

我假设我需要将某些内容更新为“https”,但我不知道在哪里。

4

1 回答 1

-1

我想你包括Index_header.phpindex.php. IE。它从根文件夹加载文件,因此您需要添加包含文件夹: index.php <- index_header.php <- connection.php

你需要做

includes("includes/connection.php");
于 2014-01-09T19:36:21.780 回答