Learn Wordpress Folders and Files Permission
Here's how I configure my Wordpress folders and files permission using Bitnami image in Amazon. find /htdocs -type d -exec chmod 775 {...
https://www.czetsuyatech.com/2020/02/wordpress-folders-and-file-permission.html
Here's how I configure my Wordpress folders and files permission using Bitnami image in Amazon.
find /htdocs -type d -exec chmod 775 {} +
find /htdocs -type f -exec chmod 664 {} +
Exception
wp-config.php - 640
find /htdocs -type d -exec chmod 775 {} +
find /htdocs -type f -exec chmod 664 {} +
Exception
wp-config.php - 640
Post a Comment