我正在建立一个网站,并且在根文件夹中有 index.php。其他页面最多为 2 个文件夹,并按不同的类别分开。
所以 index.php 文件是正确的;
<?php include ('/inc/head.php'); ?>
但是其他页面必须是;
<?php include ('../inc/head.php'); ?> or <?php include ('../../inc/head.php'); ?>
但这会破坏包含文件本身中 css 和脚本文件的相对路径,因为它们不会正确映射!有什么解决办法吗?