I have been looking everywhere around the internet and cannot find how to just simply run my Web Application files. I tried using XAMPP with Joomal but it wouldn't let me just use my own files I had to create a template or just add to an existing one.
I am trying to run TinyMce, Htm, php, and js. But once I add my files to the htdocs folder in XAMPP it just shows me a file directory to navigate the folders and not run and present my web site. Here is an example of what exactly is happening.
You need to switch off the Directory Listings, either in the apache configuration (preferably) or in the .htaccess file.
In httpd.conf, find the root directory of your website, and add Options -Indexes
:
<Directory "C:/xampp/htdocs">
Options -Indexes
</Directory>