XAMPP Object not found error

后端 未结 14 2033
走了就别回头了
走了就别回头了 2020-12-09 15:46

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

相关标签:
14条回答
  • 2020-12-09 16:10

    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.

    0 讨论(0)
  • 2020-12-09 16:13

    I was getting this error

    https://docs.google.com/file/d/0B-dUcqacTOLPcmI3SENMZFBLWG8/edit?usp=drivesdk

    but I have done some coding into htdocs/index.php and made this like wamp homepage some thing like this

    https://docs.google.com/file/d/0B-dUcqacTOLPVC1ORS1saGdOclU/edit?usp=drivesdk

    0 讨论(0)
  • 2020-12-09 16:14

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

    For eg:

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

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

    0 讨论(0)
  • 2020-12-09 16:14

    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 <VirtualHost *:80> all lines between </VirtualHost

    0 讨论(0)
  • 2020-12-09 16:20
    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

    0 讨论(0)
  • 2020-12-09 16:20

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

    0 讨论(0)
提交回复
热议问题