I am trying to rediret from ssl back to non ssl in apache and I am not having any luck. Can this be done via htaccess?
RewriteEngine On RewriteBase / RewriteCond %{HTTPS} on RewriteCond %{HTTP_HOST} www.mydomain.org RewriteRule (.*) http://www.mydomain.org/$1 [R=301,L]