I want to turn ssl off in a virtual directory - cron
some urls that need to run via http are for example /cron/one , /cron/two or /cron/three
I'm using this rewrite to force ssl
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L]
some examples, here should ssl be turned off:
/cron/one
/cron/two
/cron/three
some help?