Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this setup where I pass all the requests from apache port 80 to tomcat app listening on 8080 using the following in my httpd.conf file

ProxyPass /myapp http://localhost:8080/myapp
ProxyPassReverse /myapp http://localhost:8080/myapp

Then I have the rewrite rules in my apache webroot so that I can map the subdomains to urls . This is the rule I have in my .htaccess file

RewriteEngine on
RewriteCond %{HTTP_HOST} ^subdomain1.example.com
RewriteRule ^(.*)$ http://subdomain1.slimads.com/myapp/mypage.jsp?parms [R]

subdomain1 is mapped in my dns manager properly and resolves to the domain www.example.com

Now when I access subdomain1.example.com the url it is redirecting me to is http://www.example.com/myapp/mypage.jsp?parms and not retaining the subdomain1 in the url in the browser.

What am I doing wrong ?

Almost all of the rewrite examples on the net I was looking at are referring to a standalone apache instance . In my case I have the reuqests being passed to Tomcat with reverseProxy

Appreciate any help .

Thanks

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.