我include
在 Ubuntu 服务器上使用 php 定位文件时遇到问题。
网站结构
/var/www/
home/index.php
include/header.php
当我尝试include_once('/include/header.php')
在文件home/index.php中插入以下内容时,它不起作用。
但是,如果我将其更改为include_once('../include/header.php')
,它可以正常工作,但是要在我的网站上保持一致性,我不能允许这样做
解决此问题的最佳方法是什么?