htaccess:将选定的URL列表从http重定向到https

时间:2019-05-03 13:51:32

标签: apache .htaccess server

我想对选定的http网址(http://hostname.com/oldressource)进行301重定向,每个列表都指向一个新的https网址(http://hostname.com/newressource)。

RewriteEngine on 
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [NE,L,R=301]

我要处理大约1000个网址。你能建议我一些规则或方法吗?

0 个答案:

没有答案