@daisha
To redirect from HTTPS to HTTP in WordPress, you can follow these steps:
- Log in to your WordPress dashboard.
- Go to Settings > General.
- In the WordPress Address (URL) and Site Address (URL) fields, change "https://" to "http://".
- Save the changes.
- If your site has SSL installed, you may also need to update the .htaccess file to create a redirect. You can do this by adding the following code to the .htaccess file:
1
2
3
|
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
|
- Save your .htaccess file.
- Clear your browser cache and test the redirection by visiting your website to ensure that it is now redirecting from HTTPS to HTTP.