gpt4 book ai didi

php - 自动显示 public_html 文件夹

转载 作者:太空宇宙 更新时间:2023-11-04 11:01:37 26 4
gpt4 key购买 nike

我正在构建本地 apache2 网络服务器。这是我的 VirtualHost 文件的一部分。

    ServerAdmin webmaster@localhost
ServerName www.chinchaladze.ge

DocumentRoot /var/www/chinchaladze.ge
<Directory />
#Options FollowSymLinks
#AllowOverride None
#Options FollowSymLinks
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order deny,allow
Allow from all
</Directory>
<Directory /var/www/chinchaladze.ge>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order deny,allow
Allow from all
</Directory>

据我所知,当我访问 www.chinchaladze.ge 时,它​​应该会自动找到 public_html 文件夹并在那里找到 index.* 文件。但相反,它显示了一个默认的“/索引”网页,类似于:http://i.stack.imgur.com/vgze8.gif

你能以某种方式帮助我吗?提前致谢!

最佳答案

你的

Options Indexes

负责显示上传图片时可浏览的目录结构。建议从所有生产服务器中删除此设置。

使用

DirectoryIndex index.html index.htm index.php welcome.html

让 Apache 显示您的索引文件。

https://wiki.apache.org/httpd/DirectoryListings

关于php - 自动显示 public_html 文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26826503/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com