To prevent people to viewing your php.ini file via a browser a few lines need to be pasted into the .htaccess file.
1) Login to the cPanel
2) Click on File Manager
3) Open the public_html folder (click on the folder icon next to public_html)
4) Click on .htaccess and then select the "Edit File" option on the right hand of the window.
5) Paste the following code into the bottom of the file and then click save:
<Files php.ini>
Order allow,deny
Deny from all
</Files>
Now your php.ini file is protected and which can help php crackers from finding exploits on your site.
- 0 brukere syntes dette svaret var til hjelp