Redirect https:// to http:// with .htaccess
-
Hi
Anybody know how to redirect a https:// request to http:// using .htaccess, currently got this in my .htaccess file:
Options +FollowSymlinks
RewriteEngine on# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]</IfModule>
# END WordPresswith the https: request browser is showing un trusted connection alert,
thanks in advance
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
The topic ‘Redirect https:// to http:// with .htaccess’ is closed to new replies.