You can redirect all website pages from https to http. It will be redirect only when you open the page with https.
See Example Below
https://example.com Redirect to http://example.com
https://example.com/page1/ Redirect to http://example.com/page1/
https://example.com/page2/ Redirect to http://example.com/page2/
Open .htaccess in root folder
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
Replace with Following code
RewriteEngine On
RewriteCond %{SERVER_PORT} ^443$ [OR]
RewriteCond %{HTTPS} on
RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
![Wordpress redirect https to http with htaccess [SOLVED] Wordpress redirect https to http with htaccess [SOLVED]](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjhn3OOZ-bQSxhuaLJkosBE4zGmSXl3N-Q0TW2NJSaGxHfKn8PNKvHOG1Ub9VOQG6E105emE0ERGz7G2CfpTOuH4GLe3nEzddxuZaYYzy3lLGRx13OWuzPf5A62yxp4aPpZ6CjZcyp9cufO/s1600/Wordpress+redirect+https+to+http+with+htaccess.png)