Click here to Skip to main content
15,894,180 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
suppose i made one site and host it on HTTP means without security but now i want to convert it to HTTPS means i want to provide security for this site .Then after converting HTTP to HTTPS it will modify into same site or create the duplicate site and store on other location?

What I have tried:

i have created one web service and hosted it on HTTP and after i convert this to HTTPS but i didn't get that it will create the copy of same site or modify the existing copy.
Posted
Updated 23-Apr-17 21:33pm
v2

1 solution

Same: it's the communications protocol that changes - all you need to do is change all http links in your site to https and provide the certificate, basically.
See here: Guide: Converting Your Site From HTTP to HTTPS[^]
 
Share this answer
 
Comments
Member 13147717 24-Apr-17 3:50am    
means there is no different database for HTTP and HTTPS right?
OriginalGriff 24-Apr-17 4:11am    
Nope. The DB is unchanged (unless it contains http link addresses, which would need to be changed).
But I'd check the rest of your security first: Hashed passwords rather than encrypted or plain text, SQL Injection vulnerabilities, XSS attacks, and so on first. Switching to https won't do anything about those!
Member 13147717 24-Apr-17 5:28am    
will you please tell me the exact back-end process while transferring HTTP to HTTPS please..
OriginalGriff 24-Apr-17 5:36am    
Read the link - it explains the process better than I can.
The other things I mentioned are the basics that even a http site must adhere to in order to be considered even slightly secure - Google will find you a lot of info on those, but if you haven't considered them at all yet, then check and fix that lot first or a switch to https will be a complete waste of time and money.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900