wget 403 forbidden解决小记

今天想把windows上的文件传到linux服务器的一个虚拟机linux系统上(宿主机和虚拟机内部桥接)。

 

先在linux服务器上开了个vsftp,通过该FTP将文件传到该服务器。

 

然后在该linux上正好有个apache,开了httpd,我就懒得弄samba了,直接丢到/var/www/html

然后在虚拟机系统中wget

 

居然失败!说403 forbidden。

 

本来以为是宿主机上apache配置的问题,搜了一圈未果。

然后怀疑是文件权限问题,

 

[root@localhost html]# ls -l
总计 48
-rw------- 1 root root 36737 04-09 10:23 go.zip
-rw-r--r-- 1 root root    25 04-01 16:15 test.html

 

果然,go.zip是我通过ftp上传的文件,只有root的rw权限。

chmod 777一下,然后虚拟机wget。搞定~

你可能感兴趣的:(apache,html,windows,linux,虚拟机,服务器)