How to modify or hide server header
By default, all our web hosting servers display the server in headers when responding to requests. Using .htaccess on your website, you can change this functionality.
You can hide the server header entirely by adding the following to your .htaccess file:
Header unset ServerYou can also modify the server header by adding the following to your .htaccess file:
Header set Server "Hawk Host Web Server"You will just need to replace “Hawk Host Web Server” with whatever you want to display.
You can hide or modify the server header for specific websites or folders by adding the .htaccess file in the folder or the document root of the website.