📜  将非 www 重定向到 www htaccess - 无论代码示例

📅  最后修改于: 2022-03-11 14:55:41.704000             🧑  作者: Mango

代码示例1
# Canonical https/www

    RewriteCond %{HTTPS} off
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    
    RewriteCond %{HTTP_HOST} !^www\. [NC]
    RewriteRule (.*) https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]