Home  >  Article  >  Backend Development  >  How to hide your .php files_PHP Tutorial

How to hide your .php files_PHP Tutorial

WBOY
WBOYOriginal
2016-07-21 15:56:17731browse

Hide your .php file
Hide your .php file
I saw this method when I was mirroring the PHP online manual today, haha, I never noticed it before, so the manual is the best teacher
---------------------------------------------------------------- ------------------------------------
If you don’t want others to know that your website uses PHP program To achieve security purposes. You can configure your httpd.conf file as follows
But this does not mean that PHP is unsafe.
You can use the following methods to achieve hiding purposes:
1 .Hide PHP as other languages ​​
Add the following line anywhere in your httpd.conf
# Make PHP code look like other code types
AddType application/x-httpd-php .asp .py .pl .jsp aspx
2. Use unknown extension for PHP
Add the following line anywhere in your httpd.conf
# Make PHP code look like unknown types
AddType application/x -httpd-php .bop .foo .133t .los .abc
3. Use HTML extension for PHP
Add the following line anywhere in your httpd.conf
# Make all PHP code look like html
AddType application/x-httpd-php .htm .html
Restart your apache. Change your PHP file name to the file suffix you set above. Open the test...
Although it is very simple, it is very practical, isn’t it?

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/318077.htmlTechArticleHide your .php file Hide your .php file I saw this method when I was mirroring the PHP online manual today , Haha, I never noticed it before, so the manual is the best teacher -------...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn