Hello list,
We have a web applications which opens a PDF and the PDF does app.launchURL
back to the web application.
The strange thing is that in between 50 and 80% of the cases and sometimes in
all cases, after this redirect the browser, instead of showing the page,
outputs HTML code -
> I have changed the rule to
>
> RewriteEngine On
> RewriteCond %{SERVER_PORT} =80
> RewriteRule ^/teachers/(.*)$ https://%{HTTP_HOST}/$1 [L,R]
>
> which does not work either. If I change ^/teachers/(.*)$ to ^(.*)$, it
> works for every page. But I only wanted it to change when entering the
> t
> Hello,
> apache v2.2
>
> I have what I thought is a simple re-write rule:
>
> RewriteEngine on
> ReWriteRule ^/teachers/(.*)$ https://${HTTP_HOST}/$1 [L,R]
>
> The idea is that if the teachers page is being loaded, always use the
> secure protocol. It does not work.
> Where have I gone wro