2

需要重定向http:// www.old-url.com/any/other/url/segmenthttps:/ /www.new-url.com/any/other/url/segment

目前我正在做这样的事情:

RewriteEngine On
RewriteCond %{HTTP_HOST} !http://www.old-url.com/1$ [NC]
RewriteRule ^(.*)$ https://www.new-url.com/$1 [L,R=301]  

结果:

http:// www.old-url.com/any/other/url/segment to
https:// www.new-url.com/

谢谢-罗比

4

1 回答 1

0

使用以下 htaccess 规则将 http 重定向到 https:

RewriteEngine On
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

来源:htaccess 重定向

于 2012-12-17T13:33:02.190 回答