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.
我在我的网站上添加了 SSL,并将绝对路径中的“http://”更新为“https://”。
我在我的相关 php 包含中收到错误。
代码:
include("connection.php");
错误信息
警告: include(connection.php)[function.include]:无法打开流:第 57 行的 pathTo/includes/index_header.php 中没有此类文件或目录
我假设我需要将某些内容更新为“https”,但我不知道在哪里。
我想你包括Index_header.php在index.php. IE。它从根文件夹加载文件,因此您需要添加包含文件夹: index.php <- index_header.php <- connection.php
Index_header.php
index.php
你需要做
includes("includes/connection.php");