debian在/var/www/apache2-default/的文件夹下,redhat默认在哪里我不知道。
但是可以通过httpd.conf或其他的apache2的配置文件来查看
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
# This directive allows us to have apache2's default start page
# in /apache2-default/, but still have / go to the right place
RedirectMatch ^/$ /apache2-default/
</Directory>
比如上面就是定义了一个apache2的默认的文件路径,我更喜欢把文件放在我的文件夹下,用alais来定义访问
比如在httpd.conf中重定向用
Alias /mypage/ /home/cg111/mytest/
就把http://localhost/mypage的访问 ... index.jsp文件了