I am trying to host my wordpress project in centos remotely, i have hosted it on /var/www/html
and gave permission 777 for all sub folders and files, and changes
and in .httpd file i have changed to all
<Directory />
AllowOverride All
# Require all denied
</Directory>
and
<Directory "/var/www">
AllowOverride All
# Allow open access:
# Require all granted
</Directory>
also in
<Directory "/var/www/html">
AllowOverride All
</Directory>
have changed
<Directory "/var/www/cgi-bin">
AllowOverride All
Options None
Require all granted
</Directory>
but not use the i am getting same internal server error, and The requested URL /l was not found on this server, but i can able to access backend of wordpress wp-admin what would be the problem then?