<small id='AWAgp'></small><noframes id='AWAgp'>

      1. <i id='AWAgp'><tr id='AWAgp'><dt id='AWAgp'><q id='AWAgp'><span id='AWAgp'><b id='AWAgp'><form id='AWAgp'><ins id='AWAgp'></ins><ul id='AWAgp'></ul><sub id='AWAgp'></sub></form><legend id='AWAgp'></legend><bdo id='AWAgp'><pre id='AWAgp'><center id='AWAgp'></center></pre></bdo></b><th id='AWAgp'></th></span></q></dt></tr></i><div id='AWAgp'><tfoot id='AWAgp'></tfoot><dl id='AWAgp'><fieldset id='AWAgp'></fieldset></dl></div>
      2. <tfoot id='AWAgp'></tfoot>
          <bdo id='AWAgp'></bdo><ul id='AWAgp'></ul>
        <legend id='AWAgp'><style id='AWAgp'><dir id='AWAgp'><q id='AWAgp'></q></dir></style></legend>

        header('HTTP/1.0 404 Not Found');什么都不做

        header(#39;HTTP/1.0 404 Not Found#39;); not doing anything(header(HTTP/1.0 404 Not Found);什么都不做)

            • <tfoot id='NkWqy'></tfoot>
              • <bdo id='NkWqy'></bdo><ul id='NkWqy'></ul>
                <legend id='NkWqy'><style id='NkWqy'><dir id='NkWqy'><q id='NkWqy'></q></dir></style></legend>

                <small id='NkWqy'></small><noframes id='NkWqy'>

                  <tbody id='NkWqy'></tbody>
                <i id='NkWqy'><tr id='NkWqy'><dt id='NkWqy'><q id='NkWqy'><span id='NkWqy'><b id='NkWqy'><form id='NkWqy'><ins id='NkWqy'></ins><ul id='NkWqy'></ul><sub id='NkWqy'></sub></form><legend id='NkWqy'></legend><bdo id='NkWqy'><pre id='NkWqy'><center id='NkWqy'></center></pre></bdo></b><th id='NkWqy'></th></span></q></dt></tr></i><div id='NkWqy'><tfoot id='NkWqy'></tfoot><dl id='NkWqy'><fieldset id='NkWqy'></fieldset></dl></div>

                  本文介绍了header('HTTP/1.0 404 Not Found');什么都不做的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我的站点主目录中有一个 404.php 文件,我使用 header('Location: 404.php'); 有一段时间,直到有人说你应该使用 header('HTTP/1.0 404 Not Found'); 代替.所以我用它替换它,然后添加: ErrorDocument 404/404.php 到我的 apache 配置文件并重新启动服务器但它不起作用.

                  I have a 404.php file in my site's main directory and I was using header('Location: 404.php'); for a while until someone said that you should use header('HTTP/1.0 404 Not Found'); instead. So I replaced it with that and then added: ErrorDocument 404 /404.php to my apache config file and restarted the server but it doesn't work.

                  我尝试了不同的变体,包括 ErrorDocument 404 404.phpErrorDocument 404 mywebite/404.php 但无济于事.

                  I tried different variations including ErrorDocument 404 404.php and ErrorDocument 404 mywebite/404.php but to no avail.

                  我的意思是不工作是早期使用 header('Location: 404.php'); 它会重定向到 404.php 文件但是当我用 header('HTTP/1.0 404 Not Found'); 它似乎只是跳过该行而不做任何事情.它肯定不是重定向.我要求重定向的原因是,如果 $_GET 标头值无法识别,则页面应为 404.

                  What I mean by doesn't work is that earlier when using header('Location: 404.php'); it would redirect to the 404.php file but when I replace it with header('HTTP/1.0 404 Not Found'); it seems to just skip over the line and not do anything. It most certainly is not redirecting. The reason I am calling for the redirect is because if a $_GET header value is not recognized the page should 404.

                  推荐答案

                  不,它可能确实有效.它只是不容易看到.而不是 just 使用 header 调用,尝试这样做,然后包括 404.php,然后调用 die.

                  No, it probably is actually working. It's just not readily visible. Instead of just using the header call, try doing that, then including 404.php, and then calling die.

                  您可以通过使用以下内容创建一个名为 test.php 的 PHP 文件来测试 HTTP/1.0 404 Not Found 是否有效:

                  You can test the fact that the HTTP/1.0 404 Not Found works by creating a PHP file named, say, test.php with this content:

                  <?php
                  
                  header("HTTP/1.0 404 Not Found");
                  echo "PHP continues.
                  ";
                  die();
                  echo "Not after a die, however.
                  ";
                  

                  然后用 curl -D/dev/stdout 查看结果显示:

                  Then viewing the result with curl -D /dev/stdout reveals:

                  HTTP/1.0 404 Not Found
                  Date: Mon, 04 Apr 2011 03:39:06 GMT
                  Server: Apache
                  X-Powered-By: PHP/5.3.2
                  Content-Length: 14
                  Connection: close
                  Content-Type: text/html
                  
                  PHP continues.
                  

                  这篇关于header('HTTP/1.0 404 Not Found');什么都不做的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
                  PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
                  mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                  Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                  Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                  Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)
                  • <bdo id='JCABe'></bdo><ul id='JCABe'></ul>

                      <small id='JCABe'></small><noframes id='JCABe'>

                      <tfoot id='JCABe'></tfoot>
                      1. <i id='JCABe'><tr id='JCABe'><dt id='JCABe'><q id='JCABe'><span id='JCABe'><b id='JCABe'><form id='JCABe'><ins id='JCABe'></ins><ul id='JCABe'></ul><sub id='JCABe'></sub></form><legend id='JCABe'></legend><bdo id='JCABe'><pre id='JCABe'><center id='JCABe'></center></pre></bdo></b><th id='JCABe'></th></span></q></dt></tr></i><div id='JCABe'><tfoot id='JCABe'></tfoot><dl id='JCABe'><fieldset id='JCABe'></fieldset></dl></div>

                            <tbody id='JCABe'></tbody>

                          • <legend id='JCABe'><style id='JCABe'><dir id='JCABe'><q id='JCABe'></q></dir></style></legend>