标签: 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个网址。你能建议我一些规则或方法吗?