[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.145.45.114: ~ $
<?php
/*
* SiteSEO
* https://siteseo.io/
* (c) SiteSEO Team <support@siteseo.io>
*/

/*
Copyright 2016 - 2024 - Benjamin Denis  (email : contact@seopress.org)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/

namespace SiteSEO\Services\Sitemap;

defined('ABSPATH') or exit('Cheatin&#8217; uh?');

class Headers {
	const NAME_SERVICE = 'SitemapHeaders';

	/**
	 * @since 4.3.0
	 *
	 * @return void
	 */
	public function printHeaders() {
		$headers = ['Content-type' => 'text/xml', 'x-robots-tag' => 'noindex, follow'];
		$headers = apply_filters('siteseo_sitemaps_headers', $headers);
		if (empty($headers)) {
			return;
		}

		foreach ($headers as $key => $header) {
			header($key . ':' . $header);
		}
	}
}

Filemanager

Name Type Size Permission Actions
Render Folder 0755
Headers.php File 1.25 KB 0644