On Wed, 2009-05-20 at 13:04 -0700, Pete Nesbitt wrote:
> Hi,
> We are changing one of our domain names which has about 150 host/subdomains.
> Apache version is 2.0.52 on RHEL4
>
> Current http_host's would look something like this:
> service1.old-domain.com
> service2.old-domain.com
> host1.subdom1.old-domain.com
> etc...
>
> I need to make them read:
> service1.new-domain.com
> service2.new-domain.com
> host1.subdom1.new-domain.com
>
> From what I can see I would need to add a separate rewrite set for each host
> within the old domain:
> RewriteCond %{HTTP_HOST} ^service1\.old-domain\.com$ [NC]
> RewriteRule ^(.*)$ service1.new-domain.com$1 [R=301,L]
>
> RewriteCond %{HTTP_HOST} ^service2\.old-domain\.com$ [NC]
> RewriteRule ^(.*)$ service2.new-domain.com$1 [R=301,L]
> etc...
>
> I am searching for a method to do this with a single rule.
>
> I have tried adding shell type variable substitution but that fails:
> OLDDOM=%{HTTP_HOST}
> NEWDOM=`echo %{HTTP_HOST}|sed s/old-domain/new-domain/`
> RewriteRule ^(.*)$ ${NEWDOM}$1 [R=301,L]
>
> Any help would be appreciated.
>
> Thanks.
> Pete
>
I wrote a module to do this, to avoid having to keep adding rewrite
rules, see this mail
http://mail-archives.apache.org/mod_mbox/httpd-users/200904.mbox/%
3c1240428167.3533.7.ca...@localhost%3e
Cheers
Tom
---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [email protected]
" from the digest: [email protected]
For additional commands, e-mail: [email protected]