We have a client that is going through a redesign. Due to provider constraints, we will be using a reverse proxy to make it look like the blog will continue to be at www.domain.com/blog instead of blog.domain.com.
In other words, although we're being forced to move the blog to a subdomain, the reverse proxy will make it appear that no domain changes have actually occurred.
(See also: [
seomoz.org...]
In the meantime, we also need to perform a few 301s. Ex:
www.domain.com/oldblogurl => www.domain.com/newblogurl
HOWEVER: the "actual" home of the URL is really blog.domain.com/newblogurl, but the reverse proxy makes it look like www.domain.com/newblogurl
www.domain.com/oldblogurl => www.domain.com/newblogurl (but this is REALLY blog.domain.com/newblogurl)
Can we still configure a 301 redirect for this, or does the reverse proxy add an extra layer of DNS complexity to make this impossible?
I am no expert on DNS issues so I appreciate any advice you can offer.