Am 12/03/2014 02:34 AM, schrieb Rob Weir:
On Tue, Dec 2, 2014 at 7:43 PM, Simon Phipps<si...@webmink.com> wrote:
On Wed, Dec 3, 2014 at 12:30 AM, Rob Weir<r...@robweir.com> wrote:
Is there a way we could handle it even earlier, at the Apache server
level? Detect the incoming link based on the referrer as ones coming
from the offending website and then redirect that to a custom webpage
where we explain to the user that we are not QuickOffice Pro? If we
do that then we would get no (or far fewer) emails, right?
I doubt there will be a common referrer as the links on
https://itunes.apple.com/gb/app/quickoffice-pro/id889011512?mt=8
just point to openoffice.org and the users getting through seem to be smart
enough to find a contact address. But if there was a way to do that it
would be even better, yes.
I understand. It should be possible to detect and redirect all
incoming website requests that originate from
https://itunes.apple.com/gb/app/quickoffice-pro/id889011512
This could be done preferably at the Apache HTTP Server level, or
(less reliably) on our home page with a Javascript redirect:
<script>
if ( window.document.referrer.indexOf(
"/itunes.apple.com/gb/app/quickoffice-pro/id889011512" ) != -1 ) {
location.href = "http://www.openoffice.org/new-special-page.html";
}
</script>
ah, good idea as long as the app is still in the store - or at least the
wrong link.
I can take care of this as soon as SVN is working again.
Marcus
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org