I want to rewrite a http connection to https, but not for the rss directory
# redirect to SSL connection
RewriteCond %{SERVER_PORT} 80
# can't get the next line to work
RewriteCond %{REQUEST_URI} !^/(rss)($|/)
RewriteRule ^(.*)$ https://%{SERVER_NAME}/$1 [R,L]
Can anyone tell me how to do this?
This should work: