javascript - How can I run my WebApplication files to the server without an Index.html or.php? -
i have been looking everywhere around internet , cannot find how run web application files. tried using xampp joomal wouldn't let me use own files had create template or add existing one.
i trying run tinymce, htm, php, , js. once add files htdocs folder in xampp shows me file directory navigate folders , not run , present web site. here example of happening.
you need switch off directory listings, either in apache configuration (preferably) or in .htaccess file.
in httpd.conf, find root directory of website, , add options -indexes
:
<directory "c:/xampp/htdocs"> options -indexes </directory>
Comments
Post a Comment