301跳转 https_http跳转https和https跳转http的两种301重定向代码
时间: 2023-10-30 13:18:05 浏览: 223
Apache mod_rewrite实现HTTP和HTTPS重定向跳转
将HTTP跳转到HTTPS的301重定向代码:
```
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
```
将HTTPS跳转到HTTP的301重定向代码:
```
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
```
需要注意的是,这些代码应该放在网站的.htaccess文件中,并且您需要确保您的服务器支持Apache模块mod_rewrite。
阅读全文