WordPress Host Headers

WordPress Host Headers Install Statistics

0
100%
Today: 0 Yesterday: 0 All-time: 1,157 downloads
WordPress Host Headers Icon

Try plugin: WordPress Host Headers

We'll create fresh WordPress site with WordPress Host Headers installed. You have 20 minutes to test the plugin after that site we'll be deleted.

Takes ~10 seconds to install.

About WordPress Host Headers

Add a Host-Header to track down hosting partners in helping combat web spam.

0


0


0


0


0

updated: 4 years ago
since: 4 years ago
author: Jake Spurlock

Description

This simple plugin that adds a “Host-Header” HTTP header where you can define your webhost. Web partners that scan for compromised websites can notify hosts more effectively to cleanup sites.

This plugin is super overkill. Adding a simple file with the following to your mu-plugins.php will have the same effect.

// custom-host-header.php
add_filter( 'wp_headers', function( $headers ) {
    $headers['Host-Header'] = 'YOUR HOST NAME HERE';
    return $headers;
} );