Security Headers – SEO优化

/**
* 安全Headers – 三站统一配置
* HSTS, CSP, X-Frame-Options, X-Content-Type-Options, Referrer-Policy, Permissions-Policy
*/
function add_security_headers() {
// HSTS (已由Cloudflare处理, 此处做双保险)
header(‘Strict-Transport-Security: max-age=31536000; includeSubDomains; preload’);
// 内容安全策略 (宽松模式, 兼容第三方资源)
header(“Content-Security-Policy: default-src ‘self’ https:; script-src ‘self’ ‘unsafe-inline’ ‘unsafe-eval’ https:; style-src ‘self’ ‘unsafe-inline’ https:; img-src ‘self’ data: https:; font-src ‘self’ data: https:; connect-src ‘self’ https:; frame-src ‘self’ https:;”);
// 防止点击劫持
header(‘X-Frame-Options: SAMEORIGIN’);
// 防止MIME嗅探
header(‘X-Content-Type-Options: nosniff’);
// XSS防护
header(‘X-XSS-Protection: 1; mode=block’);
// 跨域引用策略
header(‘Referrer-Policy: strict-origin-when-cross-origin’);
// 权限策略 (禁用不需要的功能)
header(“Permissions-Policy: camera=(), microphone=(), geolocation=(), interest-cohort=()”);
// 移除PHP/WordPress版本信息
header_remove(‘X-Powered-By’);
header_remove(‘X-Redirect-By’);
}
add_action(‘send_headers’, ‘add_security_headers’);

/**
* 禁用XML-RPC (安全)
*/
add_filter(‘xmlrpc_enabled’, ‘__return_false’);

/**
* 限制登录尝试 (基础保护)
*/
add_filter(‘wp_headers’, function($headers) {
if (isset($headers[‘X-Pingback’])) {
unset($headers[‘X-Pingback’]);
}
return $headers;
});

/**
* 禁用REST API用户枚举
*/
add_filter(‘rest_endpoints’, function($endpoints) {
if (isset($endpoints[‘/wp/v2/users’])) {
unset($endpoints[‘/wp/v2/users’]);
}
if (isset($endpoints[‘/wp/v2/users/(?P[\d]+)’])) {
unset($endpoints[‘/wp/v2/users/(?P[\d]+)’]);
}
return $endpoints;
});

💡 需要日本保健品或護膚產品?

歡迎聯繫我們的客服團隊,日本保健品館提供各類日本健康食品與護膚產品代購服務。

👉 點擊了解

💊

關於作者 | 日本保健品館 (jpantao) 健康管理團隊

日本保健品館(jpantao)深耕日本健康食品多年,專注於引進日本最尖端的健康食品與奢華護膚方案。我們是您信賴的日本專業代購夥伴,致力於為全球用戶提供源自日本製藥大廠的純正健康體驗。

🛒 購買網址:www.jpantao.com
💬 官網聯絡客服 LINE:@333wxijd

本館核心代理與服務範疇涵蓋:藥師堂 (Yakushido)神仙堂 (Shinsendo)、以及備受矚目的 藥王製藥 Smarken骨齒目 (Kotsushimoku) 系列。此外,我們更引進頂級抗衰老聖品 NMN 25000、日本萊乃康 JBP 膠囊美思滿 (Melsmon) 等健康食品,以及深受廣大消費者喜愛的 光伸免稅 5GF 護膚系列。透過與日本知名藥企的深度連結,我們確保每一件產品均具備卓越的活性與安全性。

藥師堂
NMN 抗衰老
藥王製藥
5GF 護膚
JBP 膠囊
美思滿

發佈留言

返回頂端