Lỗi please check the url or contact the webmaster

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!

asked Nov 12, 2013 at 23:34

Lỗi please check the url or contact the webmaster

3

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

answered Nov 12, 2013 at 23:52

Lỗi please check the url or contact the webmaster

Drixson OseñaDrixson Oseña

3,6413 gold badges23 silver badges36 bronze badges

2

Just make sure you have the .htaccess in your project's public directory

If you don't have the file then create one and paste the below code in your .htaccess file.

Code:-


    
        Options -MultiViews
    
    RewriteEngine On
    # Redirect Trailing Slashes If Not A Folder...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)/$ /$1 [L,R=301]
    # Handle Front Controller...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]

Lỗi please check the url or contact the webmaster

answered Dec 15, 2017 at 20:46

Lỗi please check the url or contact the webmaster

code-8code-8

55.8k110 gold badges360 silver badges621 bronze badges

0

The issue is the object(project) folder and it is really not in the localhost.

Check the following things (Windows User)

1. project folder in htdocs

2. spelling of the project folder in htdocs C:\xampp\htdocs\projectname

3. Public folder inside project folder C:\xampp\htdocs\projectname\public

answered Mar 27, 2019 at 6:43

0

Drixson Oseña you are right but when you newly install xampp on your system "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.7 (Win32) OpenSSL/1.0.1e PHP/5.5.6"

However all folder in the htdocs but only open is that xampp website because of index.php error, so that's not a big deal just remove the index.html and index.php and try to open localhost again you'll be succeed.

answered Jan 6, 2014 at 10:53

2

well, i had a similar problem, so when i entered, lets say: localhost/test.php I would got Object not found warning! I solved my problem when i realized that windows changed my test.php into this test.php.txt. I changed my extension and voila! problem solved I could finaly acceses localhost/test.php.

answered Nov 6, 2014 at 14:45

I had recently the same issue, It might not be the same as your case, but if anyone has a similar situation as mine, somehow I deleted the .htaccess file in the root of my app, so I copied it back from a backup and it worked

answered Aug 19, 2019 at 13:05

Lỗi please check the url or contact the webmaster

medBouzidmedBouzid

7,72410 gold badges56 silver badges87 bronze badges

Agree @Drixson Oseña: You should not write localhost/xampp/...., else write for e.g: localhost/mw-config/index.php

answered Apr 11, 2014 at 7:39

AadilAadil

1894 bronze badges

1

Enter the command in Terminal:

sudo gedit /opt/lampp/etc/httpd.conf

and comment the line as below.

Virtual hosts

Include etc/extra/httpd-vhosts.conf**

now Restart the Lampp with

sudo gedit /opt/lampp/lamp restart

go to your browser and refresh the page it works.

answered Mar 14, 2018 at 7:22

Make sure you also start the MySQL service in Xampp control panel. This might resolve this.

answered Jan 12, 2019 at 17:42

Lỗi please check the url or contact the webmaster

unitomunitom

1297 bronze badges

1

First you have to check if FileZilla is running on xampp control panel Than such error can occur You have to stop the FileZilla service from Xampp control panel

answered Aug 12, 2019 at 7:52

Lỗi please check the url or contact the webmaster

Check if you have the correct file mentioned in form statement in HTML:

For eg:

form action="insert.php" method="POST">

when you are in trial.php but instead you give another fileName

Lỗi please check the url or contact the webmaster

Ardent Coder

3,8379 gold badges29 silver badges54 bronze badges

answered May 27, 2020 at 17:28

Lỗi please check the url or contact the webmaster

Solution for windows users: XAMPP

Go to: path:\xampp\apache\conf\extra

Open file named httpd-vhosts.conf

comment below lines if they are enabled: comment all lines in between all lines between

answered Dec 31, 2019 at 5:42

1

To resolve the error of object not found I searched many answers for this but of no use then i got my output to my program by slight change in the settings .I recommend you to follow this. 1.open settings 2.search file explorer options 3.Go to view in file explorer options 4.And unmark "hide extensions for known file types". it will solve the error.