How to hide your .php files_PHP Tutorial

WBOY
Release: 2016-07-21 15:58:12
Original
662 people have browsed it

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 programs for security purposes. You can configure your httpd.conf as follows File
But this does not mean that PHP is unsafe.
You can use the following methods to achieve the purpose of hiding:
1. Hide PHP as other languages ​​
Anywhere in your httpd.conf Add the following line in place
# 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 the 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/317622.htmlTechArticleI saw this method when I was mirroring the PHP online manual today, haha, I didn’t notice it before, so I said, The manual is the best teacher------------------------------------------------ ---------...
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template