To redirect every request on my server to a secure connection, I use
RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://mywebsite.com/$1 [R,L]
which works great.
However, I need the two paths not to be redirected.
Speak when I access
http://www.mywebsite.com/page1/test http://www.mywebsite.com/page2
I want to go this way. Is this possible with mod_rewrite?
source share