skip to Main Content

Redirect Https to http in cakephp htacess – Apache

I want to remove forceful https,and redirect https:// to http:// My .htaccess in the webroot folder is as follows: <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP:X-Forwarded-Proto} !https RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L] RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [L] </IfModule> I have…

VIEW QUESTION
Back To Top
Search