web server避免一些不必要的麻煩,可以把apache和php的版本信息不顯示,那麼Linux服務器中怎樣隱藏PHP版本呢?下文學習啦小編就分享了Linux服務器中隱藏PHP版本的方法,希望對大家有所幫助。
Linux服務器中隱藏PHP版本方法
默認上expose_php默認是開的。關閉“expose_php”參數可以使php隱藏它的版本信息。
[root@centos66 ~]# vi /etc/php.ini
在你的php.ini, 定位到含有expose_php的那行把On設成Off:
expose_php = Off
在此之前,web服務器頭看上去就像這樣:
[root@centos66 ~]# curl -I http://www.ehowstuff.com/ HTTP/1.1 200 OK Server: nginx Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding X-Powered-By: PHP/5.3.3 X-Pingback: http://www.ehowstuff.com/xmlrpc.php Date: Wed, 11 Feb 2015 14:10:43 GMT X-Page-Speed: 1.9.32.2-4321 Cache-Control: max-age=0, no-cache
更改並重啟 Web 服務後,php就不會在web服務頭中顯示版本了:
HTTP/1.1 200 OK Server: nginx Date: Wed, 11 Feb 2015 15:38:14 GMT Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding X-Pingback: http://www.ehowstuff.com/xmlrpc.php Date: Wed, 11 Feb 2015 14:10:43 GMT X-Page-Speed: 1.9.32.2-4321 Cache-Control: max-age=0, no-cache
LCTT譯注:除了 PHP 的版本之外,Web 服務器也會默認洩露版本號。如果使用 Apache 服務器,請參照此文章關閉Apache 版本顯示;如果使用 Nginx 服務器,請在 http 段內加入server_tokens off; 配置。以上修改請記得重啟相關服務。