Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

XAMPP Object not found error

I have just installed XAMPP on my machine, and when trying to access sub folders in htdocs I get the following error.

Object not found! The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again.

If you think this is a server error, please contact the webmaster.

Error 404

localhost

Apache/2.4.4 (Win32) OpenSSL/0.9.8y PHP/5.4.19"

What default security changes do I need to make in order to access child folders of htdocs? Thanks!

like image 660
crayden Avatar asked Nov 12 '13 23:11

crayden


People also ask

Why Apache is not running in xampp?

This may be due to a blocked port, missing dependencies, improper privileges, a crash, or a shutdown by another method. Check the "/xampp/apache/logs/error. log" file and the Windows Event Viewer for more clues.

How do you resolve HTTP Error 404 the requested resource is not found?

Retry the web page by pressing F5, clicking/tapping the refresh/reload button, or trying the URL from the address bar again. The 404 Not Found error might appear for several reasons even though no real issue exists, so sometimes a simple refresh will often load the page you were looking for.

Why phpmyadmin is not working in xampp?

Make sure MySQL is installed and the Service is started: First of all, open XAMPP in your device and install the MySQL and Apache by clicking on the service checkbox beside them having a red cross on it (which will change to a green tick once the modules are installed).

What is the error code that is sent by Apache as a response when it doesn't find the requested Web page inside C :\ xampp htdocs?

The HTTP 404 Not Found response status code indicates that the server cannot find the requested resource.


1 Answers

Object not found!  The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again. 

You're having problem because the object really doesn't exist in your htdocs directory. You don't have to append xampp after localhost or 127.0.0.1 because xampp will treat it as an object or a folder under htdocs.

if you want to access your blog, make sure you have a blog folder under htdocs and put in your URL localhost/blog

like image 184
Drixson Oseña Avatar answered Sep 29 '22 22:09

Drixson Oseña