How to hide your php files in resource files in Delphi

WBOY
Release: 2016-07-29 08:36:46
Original
1080 people have browsed it

Hide your .php files
Hide your .php files
I saw this method when I was mirroring the PHP online manual today, 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 your httpd.conf file as follows
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 ​​
In your httpd.conf Add the following line anywhere in
# Make PHP code look like other code types
AddType application/x-httpd-php .asp .py .pl .jsp aspx
2. Use an unknown extension for PHP
in your httpd. Add the following line anywhere in conf
# Make PHP code look like unknown types
AddType application/x-httpd-php .bop .foo .133t .los .abc
3. Use HTML extension for PHP
In your httpd Add the following line anywhere in .conf
# Make all PHP code look like html
AddType application/x-httpd-php .htm .html
Restart your apache. Change your PHP file name to what you set above File extension. Open the test...
Although it is very simple, it is very practical, isn't it?

The above introduces the implementation method of hiding your PHP files in resource files in Delphi, including the content of resource files in Delphi. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
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