Hello I have a confluence installation running on tomcat. In front of tomcat I have an apache server.
When I go to my page a 302 to /homepage.action is done and afterwards a redirect to the start space set in confluence and then a third redirect to actual start page of this page.
This is annoying and I don't know how the google bot is affected by it.
Thus I have two questions:
- How is the google bot affected by all this redirects?
- How can I avoid these redirects with apache?
I tried to make a proxy directive directly to my landing page.
<LocationMatch ^/$>
ProxyPass ajp://myurl:8009/mysite
....
</LocationMatch>
<LocationMatch /*>
ProxyPass ajp://myurl:8009/
....
</LocationMatch>
But this does not work. Either I get a 404 or I get to every request the same response.
Currently I got this configuration working:
<LocationMatch />
ProxyPass ajp://myurl:8009/
....
</LocationMatch>
But this leads to a not so cool URL at the starting page.
Kind regards
Christian