11 个解决方案
#1
放在htdocs目录下.
#2
只要你没有改默认设置,在htdocs目录下。
#3
请说一下你的apache的安装路径是什么,还有操作系统。
#4
大大!
查看一下你的httpd.conf就可以知道系统的web路径是什么了呀,然后想干嘛干嘛
查看一下你的httpd.conf就可以知道系统的web路径是什么了呀,然后想干嘛干嘛
#5
DocumentRoot "c:/apache/htdocs" #默认的根路径
********************************************
注意路径全都是用斜线而不是反斜线来分隔
********************************************
DirectoryIndex index.html index.php index.php3 index.htm index.shtml
这一项指明了在每个目录中的默认文档及其顺序
结合httpd.conf看!
********************************************
注意路径全都是用斜线而不是反斜线来分隔
********************************************
DirectoryIndex index.html index.php index.php3 index.htm index.shtml
这一项指明了在每个目录中的默认文档及其顺序
结合httpd.conf看!
#6
放在httpd.conf中document_root指定的目录下
#7
htdocs目录下,还有Index.html这个文件你在DOS下看看文件名是不是Index.htm,是的话要改成Index.html
#8
willstar(蓝色稻草人) Singtoyou(我爱Oracle) 说的很清楚啦,
看httpd.conf中网站根指定在哪里。
看httpd.conf中网站根指定在哪里。
#9
默认装在:
安装目录/htdocs
可以通过修改httpd.conf更改
httpd.conf还要很多属性可以配置,仔细看一下就明白了
httpd.conf在conf目录里
安装目录/htdocs
可以通过修改httpd.conf更改
httpd.conf还要很多属性可以配置,仔细看一下就明白了
httpd.conf在conf目录里
#10
如果你不想放在htdocs下的话
比如你想放在d:/myweb下,你可以在httpd.conf中加如下面的语句,
Alias /myweb/ "f:/d:/myweb/"
这样你可以通过 http://localhost/myweb/index.html
访问到你的也面了,如果你的 httpd.conf有下面的语句
<IfModule mod_dir.c>
DirectoryIndex index.htm index.php index.html index.htm
</IfModule>
你就可以用地址:http://localhost/myweb/
访问你的页面。
比如你想放在d:/myweb下,你可以在httpd.conf中加如下面的语句,
Alias /myweb/ "f:/d:/myweb/"
这样你可以通过 http://localhost/myweb/index.html
访问到你的也面了,如果你的 httpd.conf有下面的语句
<IfModule mod_dir.c>
DirectoryIndex index.htm index.php index.html index.htm
</IfModule>
你就可以用地址:http://localhost/myweb/
访问你的页面。
#11
这位兄弟:
你使用的Linux系统是什么?
如果是redhat系列
则httpd.conf 文件的位置是
/etc/httpd/conf/httpd.conf
或你可以 find / -name httpd.conf -print
在整个Linux文件系统查找它。
找到之后
vi httpd.conf
查找你的DocumentRoot中的 路径。
一般是
/var/www/html (Redhat系统)
把index.html文件放在这,可以执行的文件放在
/var/www/cgi-bin下,图形文件放在
/var/www/image下。
你使用的Linux系统是什么?
如果是redhat系列
则httpd.conf 文件的位置是
/etc/httpd/conf/httpd.conf
或你可以 find / -name httpd.conf -print
在整个Linux文件系统查找它。
找到之后
vi httpd.conf
查找你的DocumentRoot中的 路径。
一般是
/var/www/html (Redhat系统)
把index.html文件放在这,可以执行的文件放在
/var/www/cgi-bin下,图形文件放在
/var/www/image下。
#1
放在htdocs目录下.
#2
只要你没有改默认设置,在htdocs目录下。
#3
请说一下你的apache的安装路径是什么,还有操作系统。
#4
大大!
查看一下你的httpd.conf就可以知道系统的web路径是什么了呀,然后想干嘛干嘛
查看一下你的httpd.conf就可以知道系统的web路径是什么了呀,然后想干嘛干嘛
#5
DocumentRoot "c:/apache/htdocs" #默认的根路径
********************************************
注意路径全都是用斜线而不是反斜线来分隔
********************************************
DirectoryIndex index.html index.php index.php3 index.htm index.shtml
这一项指明了在每个目录中的默认文档及其顺序
结合httpd.conf看!
********************************************
注意路径全都是用斜线而不是反斜线来分隔
********************************************
DirectoryIndex index.html index.php index.php3 index.htm index.shtml
这一项指明了在每个目录中的默认文档及其顺序
结合httpd.conf看!
#6
放在httpd.conf中document_root指定的目录下
#7
htdocs目录下,还有Index.html这个文件你在DOS下看看文件名是不是Index.htm,是的话要改成Index.html
#8
willstar(蓝色稻草人) Singtoyou(我爱Oracle) 说的很清楚啦,
看httpd.conf中网站根指定在哪里。
看httpd.conf中网站根指定在哪里。
#9
默认装在:
安装目录/htdocs
可以通过修改httpd.conf更改
httpd.conf还要很多属性可以配置,仔细看一下就明白了
httpd.conf在conf目录里
安装目录/htdocs
可以通过修改httpd.conf更改
httpd.conf还要很多属性可以配置,仔细看一下就明白了
httpd.conf在conf目录里
#10
如果你不想放在htdocs下的话
比如你想放在d:/myweb下,你可以在httpd.conf中加如下面的语句,
Alias /myweb/ "f:/d:/myweb/"
这样你可以通过 http://localhost/myweb/index.html
访问到你的也面了,如果你的 httpd.conf有下面的语句
<IfModule mod_dir.c>
DirectoryIndex index.htm index.php index.html index.htm
</IfModule>
你就可以用地址:http://localhost/myweb/
访问你的页面。
比如你想放在d:/myweb下,你可以在httpd.conf中加如下面的语句,
Alias /myweb/ "f:/d:/myweb/"
这样你可以通过 http://localhost/myweb/index.html
访问到你的也面了,如果你的 httpd.conf有下面的语句
<IfModule mod_dir.c>
DirectoryIndex index.htm index.php index.html index.htm
</IfModule>
你就可以用地址:http://localhost/myweb/
访问你的页面。
#11
这位兄弟:
你使用的Linux系统是什么?
如果是redhat系列
则httpd.conf 文件的位置是
/etc/httpd/conf/httpd.conf
或你可以 find / -name httpd.conf -print
在整个Linux文件系统查找它。
找到之后
vi httpd.conf
查找你的DocumentRoot中的 路径。
一般是
/var/www/html (Redhat系统)
把index.html文件放在这,可以执行的文件放在
/var/www/cgi-bin下,图形文件放在
/var/www/image下。
你使用的Linux系统是什么?
如果是redhat系列
则httpd.conf 文件的位置是
/etc/httpd/conf/httpd.conf
或你可以 find / -name httpd.conf -print
在整个Linux文件系统查找它。
找到之后
vi httpd.conf
查找你的DocumentRoot中的 路径。
一般是
/var/www/html (Redhat系统)
把index.html文件放在这,可以执行的文件放在
/var/www/cgi-bin下,图形文件放在
/var/www/image下。