Apache: The requested URL / was not found on this server. Apache Apache: The requested URL / was not found on this server. Apache windows windows

Apache: The requested URL / was not found on this server. Apache


Try changing Deny from all to Allow from all in your conf and see if that helps.


In httpd.conf file you need to remove #

#LoadModule rewrite_module modules/mod_rewrite.so

after removing # line will look like this:

LoadModule rewrite_module modules/mod_rewrite.so

And Apache restart


I had the same problem, but believe it or not is was a case of case sensitivity.

This on localhost:http://localhost/.../getdata.php?id=3

Did not behave the same as this on the server:http://server/.../getdata.php?id=3

Changing the server url to this (notice the capital D in getData) solved my issue.http://localhost/.../getData.php?id=3