I have the following problem: We have a website that has multiple hrefs for images – They all use the same domain. Which is something like:
<a href="http://img.example-domain.com">Avatar</a><br/>
But the server this domain is using is currently inactive, but it’ll come back at some point, I just do not know when.
Now, we have a new image server, that is hosted on AWS.
But since the code has many entries using the old domain, I would like to know how can I redirect ALL requests to that domain to another one, instead of editing the code itself.
For example Each request from "img.example-domain.com", shall be redirected to "img.example-domain.com.amazon.etc"
Please, how can I do this?
I am using Apache and would prefer a solution that involves using Apache Rewrite module or something like that… But if it is not possible, I will be OK too with a code solution.
Thanks in advance, to everyone.
2
Answers
You may add this to your .htaccess –>
Please note: the
[R=302,L]
only applies to "temporary" redirects, for a permanent solution, replace with[R=301,L]
you need to setup a new server to your domain that’s redirects paths to the new one
you can do it with a simple node js server like this
Note: don’t forget to change
http://new-domain.com
to the real new domainEdited
You can even do it simply by using a free web host like heroku with this node js server and linking the host with the old domain