外贸独立站的底层设计密码WordPress 成品站模板
当前位置:首页>WordPress建站>网站维护>WordPress站点出现404错误时邮件通知管理员

WordPress站点出现404错误时邮件通知管理员

几乎所有的网站都会出现404错误,也就是所访问的页面不存在。倡萌之前分享过几个 WordPress 404错误统计及重定向插件,今天主要分享下 WordPress站点出现404错误时自动发送邮件通知管理员的方法。

email-404-alert-wpdaxue_com

将下面的代码添加到你所用的WordPress主题的 404.php 文件的顶端即可:

<?php // WP 404 ALERTS @ http://wp-mix.com/wordpress-404-email-alerts/
 
// set status
header("HTTP/1.1 404 Not Found");
header("Status: 404 Not Found");
 
// site info
$blog  = get_bloginfo('name');
$site  = get_bloginfo('url') . '/';
$email = get_bloginfo('admin_email');
 
// theme info
if (!empty($_COOKIE["nkthemeswitch" . COOKIEHASH])) {
     $theme = clean($_COOKIE["nkthemeswitch" . COOKIEHASH]);
} else {
     $theme_data = wp_get_theme();
     $theme = clean($theme_data->Name);
}
 
// referrer
if (isset($_SERVER['HTTP_REFERER'])) {
     $referer = clean($_SERVER['HTTP_REFERER']);
} else {
     $referer = "undefined";
}
// request URI
if (isset($_SERVER['REQUEST_URI']) && isset($_SERVER["HTTP_HOST"])) {
     $request = clean('http://' . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]);
} else {
     $request = "undefined";
}
// query string
if (isset($_SERVER['QUERY_STRING'])) {
     $string = clean($_SERVER['QUERY_STRING']);
} else {
     $string = "undefined";
}
// IP address
if (isset($_SERVER['REMOTE_ADDR'])) {
     $address = clean($_SERVER['REMOTE_ADDR']);
} else {
     $address = "undefined";
}
// user agent
if (isset($_SERVER['HTTP_USER_AGENT'])) {
     $agent = clean($_SERVER['HTTP_USER_AGENT']);
} else {
     $agent = "undefined";
}
// identity
if (isset($_SERVER['REMOTE_IDENT'])) {
     $remote = clean($_SERVER['REMOTE_IDENT']);
} else {
     $remote = "undefined";
}
// log time
$time = clean(date("F jS Y, h:ia", time()));
 
// sanitize
function clean($string) {
     $string = rtrim($string); 
     $string = ltrim($string); 
     $string = htmlentities($string, ENT_QUOTES); 
     $string = str_replace("\n", "<br>", $string);
 
     if (get_magic_quotes_gpc()) {
          $string = stripslashes($string);
     } 
     return $string;
}
 
$message = 
     "TIME: "            . $time    . "\n" . 
     "*404: "            . $request . "\n" . 
     "SITE: "            . $site    . "\n" . 
     "THEME: "           . $theme   . "\n" . 
     "REFERRER: "        . $referer . "\n" . 
     "QUERY STRING: "    . $string  . "\n" . 
     "REMOTE ADDRESS: "  . $address . "\n" . 
     "REMOTE IDENTITY: " . $remote  . "\n" . 
     "USER AGENT: "      . $agent   . "\n\n\n";
 
wp_mail($email, "404 Alert: " . $blog . " [" . $theme . "]", $message, "From: $email"); 
 
?>

如果你的主机支持mail()函数或者设置了SMTP发送邮件,总之就是能够发送邮件就行,一会去查看你设置的WordPress站点的管理员邮箱,你就会发现404通知邮件(可能在垃圾箱哦),邮件内容如本文配图所示。

如果你不需要该功能,删除刚才添加的代码,或者注销代码最后的mail()函数:

// wp_mail($email, "404 Alert: " . $blog . " [" . $theme . "]", $message, "From: $email"); 

参考资料:http://wp-mix.com/wordpress-404-email-alerts/

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

给TA打赏
共{{data.count}}人
人已打赏
欢迎关注WordPress大学公众号 WPDAXUE
网站维护

WordPress发布助手:Posting Helpmate Robot(自动匹配特色图片和标签)

2013-5-19 7:20:20

网站维护

WordPress自定义临时维护提示信息

2013-5-26 9:29:20

3 条回复 A文章作者 M管理员
  1. ➡ ❓ 用mail函数不太好吧,推荐用wp-mail函数,给SMTP的同志们留条活路

    • 多谢建议,是 wp_mail 不是 wp-mail

  2. 打开分类栏目出现404为什么呀,而且内容页也是

个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索