Advertisement
Guest User

Untitled

a guest
Nov 20th, 2015
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. The checkout/onepage is working with https. But, why checkout/cart is not?
  2.  
  3. http://idfr.com/checkout/cart/
  4. https://idfr.com/checkout/onepage/
  5.  
  6. Here is fragment of the .htaccess:
  7. ############################################
  8. ## enable rewrites
  9.  
  10. Options +FollowSymLinks
  11. RewriteEngine on
  12. # RewriteCond %{REQUEST_URI} checkout\/onepage
  13. RewriteCond %{HTTPS} off
  14. RewriteCond %{REQUEST_URI} checkout/
  15. # RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
  16. RewriteRule ^checkout/$ https://idfr.com/checkout/ [R=301,L]
  17.  
  18. ############################################
  19.  
  20.  
  21. - Apache version: Apache/2.4.7 (Ubuntu)
  22. - operating system: Windows 8.1
  23. - indications in the log files; Main ErrorLog: "/var/log/apache2/error.log"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement