HTTPS停止文件上传

时间:2017-06-26 15:27:43

标签: .htaccess https prestashop

我正在使用PS 1.6.1.1。

我在客户购物时上传文件。

客户可以将购物车转换为报价并上传此报价。

但我的HTTPS会停止文件上传。 你知道我是否可以为

添加例外
http[s]://myshop.com/commande

在htaccess中?

我试过

RewriteEngine On
RewriteBase /

RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} !^/commande
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]

RewriteCond %{HTTPS} on
RewriteCond %{REQUEST_URI} ^/commande
RewriteRule ^(.*)$ http://%{HTTP_HOST}/$1 [R=301,L]

但它没有用。

0 个答案:

没有答案