当我强制重定向http到https时,它显示重定向你太多次了

时间:2017-07-03 11:38:04

标签: .htaccess http

我这样申请

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^Product/Category/([^/]*)$ /Product/index.php?category=$1 [L]
RewriteRule ^Pages/([^/]*)$ /Allpages/?Pages=$1 [L]
RewriteRule ^Products/([^/]*)$ /Product/ProductPage.php?product=$1 [L]

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

但是,它显示www.example.com重定向了你太多次了。

1 个答案:

答案 0 :(得分:1)

好的@ravi我有你的问题所以请使用这个解决方案。

新守则:

import numpy
a = numpy.arange(12)
a.shape = 3,  4
print(a)
>>>
[[ 0  1  2  3]
 [ 4  5  6  7]
 [ 8  9 10 11]]