[users@httpd] PDF app.launchURL and browser cache

2011-08-31 Thread Geert Mak
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 -

Re: [users@httpd] Simple RewriteRule?

2011-07-18 Thread Geert Mak
> 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

Re: [users@httpd] Simple RewriteRule?

2011-07-18 Thread Geert Mak
> 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