Q: Hi - please consider the following scenario: I use a service that hosts files (images, videos, etc.)
for my sites. I then reference these files with a URL wherever I need these…example:
1. https://mysite.com/image1234
2. https://mysite.com/video8765
1. <img src="https://mysite.com/image1234.png" alt="Italian Trulli">
2. <video width="320" height="240" autoplay>
<source src="https://mysite.com/video8765.mp4"type="video/mp4">
</video>
My question
Can I use Flexi Domain so that if the request to any of the above is from an authorized domain it access the file, but if the request is from an unauthorized origin it forward the request to another path - to display a different image/video?
I’d like to do something similar to redirecting based on country or device type…but base on ip address or domain origin.
Is this use case supported?