zhansh 发表于 2022-4-9 20:48

php 网址过滤为什么没有用呢

本帖最后由 zhansh 于 2022-4-11 22:15 编辑

路过的高手帮看下,谢谢!

$uri = $_SERVER['REQUEST_URI'];

if(!empty($uri) && (strpos($uri, 'ppt') != false) || (strpos($uri, 'doc') != false)){
      header('HTTP/1.1 404 Not Found');
      header('status: 404 Not Found');
      include('./404/404b.htm');
      exit();
}

对这样的网址就有用
http://www.someweb.cn/id=abjptu/cruufj.doc

但是为什么对下面的网址转向没反应呢?应该如何修改代码?

http://www.someweb.cn/forum.php?id=widrvo/dbsanm.ppt
http://www.someweb.cn/forum.php?id=abjptu/cruufj.doc


reetin 发表于 2022-4-9 21:37

看下面

什么 !== false

zhansh 发表于 2022-4-10 17:36

reetin 发表于 2022-4-9 21:37
看下面

什么 !== false

if(!empty($uri) && (strpos($uri, 'pptx') !== false)){
        header('HTTP/1.1 404 Not Found');
        header('status: 404 Not Found');
        include('./404/404b.htm');
        exit();
}
或者
if(!empty($id) && (strpos($id, 'pptx') !== false) ){
        header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found");
        header('status: 404 Not Found');
        include('./404/404b.htm');
        exit();
}

还是都不行呢,为什么呢?

reetin 发表于 2022-4-10 22:15



测试结果 如上图。

zhansh 发表于 2022-4-11 22:15

reetin 发表于 2022-4-10 22:15
测试结果 如上图。

搞好了,谢谢朋友!
页: [1]
查看完整版本: php 网址过滤为什么没有用呢