如果url以数字结尾,则设置404

时间:2014-07-17 10:25:24

标签: php wordpress

在wordpress中,我将永久链接设置设置为" post name"。因此,自定义结构为:http://example.com/%postname%/

当我进入我的测试页面(http://example.com/test/)时,它返回200状态代码,这很好。但是当我转到http://example.com/test/1234时,它还返回200.当页面以数字结尾时,如何显示404页面(和404结果代码)?

1 个答案:

答案 0 :(得分:0)

您只需获得$ _GET值

<?php
    if(is_int($_GET['your_var'])){
        header("HTTP/1.0 404 Not Found");
    }
?>