Autoindex for PHP Built in Web Server

Today, while working on the Atropa Toolbox, I wanted an autoindexing option for the PHP built in webserver like the Apache HTTP server has. By default the PHP server was giving me 404 errors whenever I would request a directory that didn't have an index.php file in it. The documentation said that the PHP command line web server would recognize index.html files but that didn't appear to be working for me. There wasn't a chance I was going to create hundreds of index.php files just to be able to navigate through directories on my server, so I wrote a router script to automatically generate a hyperlinked list of files and directories when I reach a folder that doesn't have an index.php or index.html file. The router recognizes index.html and will redirect the browser to it if present. While it isn't as fancy as the autoindexing options on the Apache server, it gets the job done. I can now click on the names of files and folders and make my way through the filesystem on the PHP commandline webserver. If you would like a copy of the router I'll post the code below. Any updates I make to this basic router will be incorporated into the Atropa Toolbox currently hosted on google code.

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.