Hi @mhtojv ,
The issue you are facing is due to SELinux.
By default the context set on ‘/var/www/html’ is:
# ls -ldZ /var/www/html
drwxrwxrwx. apache apache system_u:object_r:httpd_sys_content_t:s0 /var/www/html/
You need to change the context for rw:
#chcon -Rv –type=httpd_sys_rw_content_t /var/www/html/
If file/directory permissions are fine then it should work.
Thanks.