Home  >  Article  >  Backend Development  >  How to set index.php file read-only in php

How to set index.php file read-only in php

藏色散人
藏色散人Original
2020-08-11 10:29:563233browse

php method to set file read-only: first create a "setread.php" file and add the content as "function set_writeable($file_name) {...}"; then upload the file to the space; finally Browse the address directly through the browser to set read-only.

How to set index.php file read-only in php

Recommended: "PHP Video Tutorial"

Set the index.php file in php as read-only Method

After setting the read-only attribute for the index.php file, the Trojan will not have the permission to append advertisements to the end of your file.

Let’s look at the specific code below to set index.php to be read-only:

Save the above content as setread.php, then upload it to the space, and browse the address directly with the browser to set it. Read only.

However, after setting this read-only attribute, you do not have permission to delete index.php through ftp. If you need to delete or overwrite index.php, please use the following code to set the read and write permissions of index.php.

The following is the code to set index.php read and write:

Save the above content as: setwrite.php, and you can set the read and write permissions by accessing it through the browser.

The above is the detailed content of How to set index.php file read-only in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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
Previous article:what is php stop commandNext article:what is php stop command