# принудительно https:// для всех, кроме выбранной URL
RewriteCond %{HTTPS} off
RewriteCond %{THE_REQUEST} !/ocsinventory/ [NC]
RewriteRule ^
https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# форсировать http:// для выбранной URLs
RewriteCond %{HTTPS} on
RewriteCond %{THE_REQUEST} /ocsinventory/ [NC]
RewriteRule ^
http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]