I have a website that I need to move to a subdirectory.
Alias /oldsite /home/server/public_html/oldsite
My question is, is there a way to rewrite all of the requests for absolute paths from the root to the new directory?
For example:
<img src="/images/test.png">
will become:
<img src="/oldsite/images/test.png">
Is there a way to do this with mod_rewrite?
Thanks and any help is much appreciated!