gpt4 book ai didi

php - 如果 url 是主页(/或 index.php),请执行此操作

转载 作者:行者123 更新时间:2023-12-04 13:49:26 25 4
gpt4 key购买 nike

我正在尝试使用以下代码在我的主页上隐藏一些内容:

<?php   

$homeurl = 'index.php';
$homepage = "/";
$currentpage = $_SERVER['REQUEST_URI'];

if($currentpage == $homepage or $currentpage == 'index.php') {
echo 'no content';
} else {
echo 'content';
}

?>

如果 url 只是 www.mysite.com 则它有效,但如果 url 是 www.mysite.com/index.php 则无效 - 我需要在这两种情况下都隐藏内容。
我的 PHP 非常基础,所以请原谅我!

最佳答案

所以你需要添加 /之前 index.php也:

$homeurl = '/index.php';

您检测索引的解决方案看起来有点奇怪,但是没有足够的代码(例如前端)来提供帮助。

关于php - 如果 url 是主页(/或 index.php),请执行此操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25664906/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com