Mobile app version of vmapp.org
Login or Join
Karen161

: Symbolic link of file on ftp server to file on dropbox Can I create a symbolic link from an ftp server (file on website) to a Dropbox URL? I'm trying and it's seeming to work correctly.

@Karen161

Posted in: #Ftp #Links #Video

Can I create a symbolic link from an ftp server (file on website) to a Dropbox URL? I'm trying and it's seeming to work correctly. My problem is a video isn't playing correctly on my site, but I know it plays perfectly every time for the Dropbox URL. Rather than sendign out notification that the link has changed once more, I thought I could create a symlink to the new file

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Karen161

2 Comments

Sorted by latest first Latest Oldest Best

 

@Deb1703797

So, I figured out I needed a different solution than what I was looking for. I added a RedirectPermanent /old_page http//www.newawesomesite.com/old_page to the .htaccess file, which cleared it up my problem nicely. Thanks.

10% popularity Vote Up Vote Down


 

@Megan663

Unlike HTTP, the FTP protocol does not include any statuses that indicate that a resource has moved. Here is the list of all statuses that FTP servers can return. None of the responses can indicate that a document has moved or is in a different location.

The best that you are going to be able to do is put a document in that location saying that the resource has moved. If the ftp downloads are done using a web browser, they might honor a document with a meta refresh in it. Put an HTML document there like this and see what happens:

<html><head>
<meta http-equiv="refresh" content="0;url=http://dropbox.com/myfile">
</head><body>
This document has moved to <a href="http://dropbox.com/myfile">http://dropbox.com/myfile</a>
</body></html>

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme