旧网址如下:
http://example.com/index.php/whatever/page
or
http://www.example.com/some-url-that-doesnt-begin-with-index/
新网址将是:
https://example.com/index.php/whatever/page
or
https://example.com/some-url-that-doesnt-begin-with-index/
这就是说当前的旧网址:
我只是在寻找.htaccess规则来实现这一目标,但没有实现多个重定向。
答案 0 :(得分:-1)
要将http请求重定向到https,您可以使用此
RewriteEngine on
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$
RewriteRule . https://%1%{REQUEST_URI} [L,R]