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.
サイトを開発している間、現在のサイトのフォルダーにホストしています。私はレベルがあまり得意ではありませんが、これが私が設定した方法です。私の体の上部には、次のものがあります。
<?php include('../includes/menu.php'); ?>
/learn/ に page.php があり、/learn/includes にクラスがあります。../../ を実行する必要がありますか?
PS: 初めての CMS を作成しています
いいえ、必要なのは次のとおりです。
include('includes/menu.php');
includesディレクトリがディレクトリ内にある場合はlearn、次を使用します。
includes
learn
<?php include('./includes/menu.php'); ?>
また
<?php include('includes/menu.php'); ?>