How to change http to https

i have implemented credit card method in my website… i need https protocol in that credit card page only… can any one help me… how to change http to https thanks in advance…

Have you configured your SSL so that it works when manually viewing the page with https? If not, do that first before setting up redirects from http.

can you guide me how to setup https in my apache 2 web server… i have used apache 2 and php 5.3 with XAMPP server

if you have ssl enable and configured on your server then

you could use following on .htaccess

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

how to enable ssl and gonfigure in my server? please any one help me

hi can you guide how to configure ssl in my apache 2 with XAMPP tool?

Search engines are your friend, use them. https://duckduckgo.com/?q=Apache+2+Windows+SSL

check this whether it helps you. Configure SSL on XAMPP and windows « My Experience with Web

hi i have configured SSL in my web server. i need integrate the SSL for particular page only… that page url contain some query string also it will come dynamically… so please help me… how to implement SSL for this particular page itself