用網站安全檢測掃瞄博客
下面詳細說明下我遇到的問題和解決方案
環境
完整錯誤信息如下
Fatal error: Call to undefined function get_header() in /網站根路徑/izhangheng/wp
解決方案
如果WEB應用程序自帶錯誤處理/管理系統
針對這個問題
<?php ini_set(
<?php
/**
* @package WordPress
* @code www
if (function_exists(
get_header();
}else{
header("Location: http://"
exit;
}; ?>
From:http://tw.wingwit.com/Article/program/PHP/201311/21108.html