How to hide PHP files: 1. Add the code anywhere in "httpd.conf" as "AddType application/x-httpd-php .asp .py .pl .jsp aspx"; 2. PHP Using unknown extension.
Hide your .php files
I saw this when I was mirroring the PHP online manual today Method, haha, I didn’t notice 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 it as follows httpd.conf file
But this does not mean that PHP is unsafe.
You can use the following method to achieve the purpose of hiding:
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 extensions for PHP
Anywhere in your httpd.conf Add the following line
# 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?
Recommended: "PHP Tutorial》
The above is the detailed content of How to hide php files. For more information, please follow other related articles on the PHP Chinese website!