vote up 0 vote down star

i'm having 'domainname1/folder/' .In Domainname1 i'm having a subdirectory which is a subdomain (abc.mydomain.com) of other domain. but this is referred to 'domainname1/folder/' . the thing is that i want the URL links accessing from 'domainname1/folder/' should be displayed following with sub domain like .

'domainname1/folder/'

to

'abc.mydomain.com/path'

flag
do you want to redirect users ? or the user should be able to access both resources ? – RageZ Nov 6 at 6:21
user should be able to access the resources but the URL address should show with abc.mydomain/path – Vijay Kumar Nov 6 at 6:32

2 Answers

vote up 0 vote down

Hi Vijay,

you should use a reverse proxy to do such setup, here a basic howto.

Hope this would help you

link|flag
This tutorial comes from a better source: apachetutor.org/admin/reverseproxies – Vinko Vrsalovic Nov 6 at 6:55
actually i need a rewrite rule for this – Vijay Kumar Nov 6 at 6:55
cannot do that with plain rewrite ... – RageZ Nov 6 at 7:29
vote up 0 vote down

You can use the proxying abilities of mod_rewrite to achieve this. In the VirtualHost section for abc.mydomain, you can add:

RewriteRule (.*) http://mydomain/folder/$1 [P]
ProxyPassReverse / http://mydomain/folder
link|flag
I probably didn't get you, with this explanation you confused me even further. Why don't you edit the question with a list URL FROM (request) => URL TO (response) examples? It would also be helpful to show what happens with this rule instead of what you want to happen. – Vinko Vrsalovic Nov 6 at 8:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.