この回答を見つけたIf url is the homepage (/ or index.php) do thisこれは本当に役に立ちましたが、私の質問に完全には答えていません。URLがホームページかどうかを確認する方法
学校用のサイトのインデックスがあり、私のすべてのフォルダを別の割り当てに表示しています。私のホームページは実際にはドメイン/フォルダ/ index.html
ですので、$ currentpage == /midterm/index.php || /中期/それは常にあなたの文が$homepage
が$homepage
が$currentpage
に等しいない場合は、設定されているかどうかを確認するためにチェックされている場合ので、私は/midterm/add.php
<?php
$homeurl = '/midterm/index.php';
$homepage = '/midterm';
$currentpage = $_SERVER['REQUEST_URI'];
if ($currentpage == $homeurl || $homepage) {
echo '<div class="hero"></div>';
}
あなたは '$ homepage'に条件を設定しません。 –
^'$ homepage'は定義されたvarとしてtrueを返します。 – nogad
^true that .... –