I placed this below in my .htaccess to divert pages through to SSL(secure pages), which worked fine, But I removed this from .htaaccess becuase I changed my mind..Ths code below is now deleted from .htaccess, but my page still goes through the secure connection.. Any ideas why this still happens and how can I have just my un-secure pages back..
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteCond %{REQUEST_URI} /blarblarblar
RewriteRule ^(.*)$ https://blarblar.com/$1 [R,L]
Any help would be great..
Cheers in advance.
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteCond %{REQUEST_URI} /blarblarblar
RewriteRule ^(.*)$ https://blarblar.com/$1 [R,L]
Any help would be great..
Cheers in advance.
Comment