简体   繁体   中英

problems with file directory ftp

i'm new in using hosting, i have a question about a FTP, why if i upload something (for example a image) to my server i cannot see it from the browser using the directory for example ( http://www.mywebsite.com/public_html/images/backgrounds/background.png ) if i use that address i get a fil with a "?" sign instead of the image. the only way to see the image is changing http by ftp for example,( ftp://ftp.mywebsite.com/public_html/images/backgrounds/background.png )

please how to find the files with http instead of ftp, to be able to use it in my web page using html

thank you

Typically, the publichtml folder is the root of your domain, which is to say that http://www.mywebsite.com/ points to your/relative/path/to/publichtml/

Using your example of putting a file at /publichtml/images/backgrounds/background.png would mean it should be accessible at http://www.mywebsite.com/images/backgrounds/background.png

Similarly, if you put filename.html in the /publichtml/ folder of your server, you should be able to access it at http://www.mywebsite.com/filename.html - If you put it in a subfolder of /publichtml/, say, at publichtml/example/, it should be accessible at http://www.mywebsite.com/example/filename.html

This can very from one server to another, but in most situations, this is common practice.

Edit: broken formatting.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM