Hi, I just want to add a htaccess redirect to my site to redirect all the https urls to http urls except for one folder.. That folder should use https... Know how to do this?
If you don't have any other mod_rewrite directives that need to apply in that directory, you can just turn mod_rewrite off in that directories htaccess. RewriteEngine off Code (markup):
Put the folder you do not want to redirect first in the .htaccess (before the https redirect). Mod_rewrite is linear, and will stop after the first match (as long as you use an [L] flag).