I am running a website with https now i dont want to use htpps and want to use only http. I am using Drupal and i am moving to wordpress. Do i have to redirect from https to http I am also planning to start my website from zero post again.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
if you have used HSTS (Strict-Transport-Security) then after switching to non https could give your returning visitors issue as they would have to delete their browser cache else they will see warning on their browser.
yes a redirect 303 seeother should work, as bookmarks should be forwarded. You will be best to notify visitors to update their bookmark, as when the ssl key runs out …
alternatively if the ssl key cost is the issue, then with a little work startssl.com can give you class 2 ssl keys for free, and you customer confidentiality can remain ssl secured.
First of all, what web server are you using? If it’s nginx, you can add redirect like this:
server {
listen 80 443 ssl;
server_name example.com;
if ($scheme = https) {
return 301 http://$server_name$request_uri;
}
...
}
In case of Apache it would like this:
<VirtualHost _default_:443>
ServerName example.com
DocumentRoot /usr/local/apache2/htdocs
SSLEngine On
...
Redirect permanent / http://example.com/
</VirtualHost>
But you would probably need to completely rework your config since you switch from Drupal to WordPress. But if you don’t want to bother with configuration, you might want to take a look at Wodby on the Projects page.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.