Enabling SSL for particular page in magento
To enable SSL for particular page in magento first open .htaccess file of your magento and include following code in it.
[php]
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^your-page-url/?$ https://%{HTTP_HOST}/your-page-url [R,L]
[/php]
Now flush the cache and check.
Regards,
Amatya Trivedi
amatya@intelligrape.com
Hey Amatya, Thanks for providing a code to enable ssl for particular page in magento but i want to provide a quick and a full guide to enable ssl in magento
What is the rewrite code to disable SSL this time?
Hello, how would this work for rewriting just the home page? Thank you!