Home > Article > Backend Development > Delphi unit files how to hide your php files
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 file as follows
But this It 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
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 , but very practical, isn’t it?
The above introduces how to hide your PHP files in Delphi unit files, including the content of Delphi unit files. I hope it will be helpful to friends who are interested in PHP tutorials.