How to hide php files

藏色散人
Release: 2023-03-01 20:58:01
Original
3074 people have browsed it

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.

How to hide php files

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
Copy after login

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
Copy after login

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
Copy after login

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!

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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!