X-Powered-By - PHP/5.2.6-2ubuntu4.6So it’s recommended disable and turn php version information off. Web masters can disable version information in the php.ini file, usually located in /etc/php.ini or /etc/php5 or /etc/php4 directory.
Modify setting as follows:
expose_php = OffAlso its a good idea to send all errors to some other file (example: /var/log/php-error.log) and not on screen to end user.
display_errors=Off
register_globals = Off
Modify setting as follows:
error_log = /var/log/httpd/php-scripts-error.logFinally after making all the above changes - Restart Apache.
/etc/init.d/httpd restartNow all php script errors are written to /var/log/php-error.log.
source:http://linuxpoison.blogspot.com/2010/04/1357816775981.html