我有
问题是:
当我打开 www.mysite.com 时,只需显示该文件夹包含索引和我的HTML 文件而不是显示网站。
我们正在寻找的是:
从dns或xampp开始执行此操作的方法:
例如我们进入的时候 www.google.com它向我们显示谷歌而不是**的索引
答案 0 :(得分:1)
由于Apache服务器未配置为显示文件,因此您必须手动将此代码添加到.htaccess或php.ini文件中:
DirectoryIndex yourpreferedfilename.ext index.php index.html
http://www.htaccess-guide.com/directoryindex-uses/
为安全起见,请将此代码添加到.htaccess或php.ini文件中:
Options -Indexes
http://www.thesitewizard.com/apache/prevent-directory-listing-htaccess.shtml