我将所有非 www 请求重写为 www :
RewriteCond %{HTTP_HOST} !^www\.mydomain\.de$
RewriteRule ^(.*)$ http://www.mydomain.de/$1 [L,R=301]
但是......这不适用于https,所以我也希望所有不带www的https请求到带www的https。例子:
https : // mydomain . de --> https : // www . mydomain . de
https://mydomain.de/example --> https://www.mydomain.de/example
骗子有人帮我吗?提前致谢!