💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## 描述 ~~~ <Directory "/var/www/html"> Options Indexes FollowSymLinks AllowOverride None Order allow,deny Allow from all </Directory> ~~~ options中Indexes表示当网页不存在的时候允许索引显示目录中的文件 ![](https://box.kancloud.cn/3e87c15f9ce92a425c5d4ededd1364e7_519x283.png) ## 解决 将要设置的目录对应配置参数下的Indexes删除或者改为-Indexes(低版本可能会报错) ~~~ <Directory "/var/www/html"> Options FollowSymLinks AllowOverride None Order allow,deny Allow from all </Directory> ~~~ 或者 ~~~ <Directory "/var/www/html"> Options -Indexes FollowSymLinks AllowOverride None Order allow,deny Allow from all </Directory> ~~~ ![](https://box.kancloud.cn/b74314e6ae9d9765d11b6d8670ab6dd8_471x133.png)