微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何使用相同的重写规则将HTTP重定向到HTTPS并删除.html?

如何解决如何使用相同的重写规则将HTTP重定向到HTTPS并删除.html?

有没有一种方法,我们可以删除.html文件扩展名,并在同一重定向规则中将http移至https,以便在同一页面上没有多个重定向链。

http-> https->删除.html

这会花费更多的加载时间,并且还具有两个重定向

这是htaccess:

RewriteEngine on
#force https+www
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} !^www\.
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$
RewriteRule (.*) https://www.%1/$1 [L,R=301,NC]
ErrorDocument 404 /404.html


#Remove .html
RewriteCond %{THE_REQUEST} /([^.]+)\.html [NC]
RewriteRule ^ /%1 [L,R=301]
RewriteRule ^(.*?)/?$ /$1.html [L]

解决方法

您可以使用单个重定向规则,如下所示:

ErrorDocument 404 /404.html
RewriteEngine on

#force https+www and remove .html
RewriteCond %{HTTPS} !on [OR]
RewriteCond %{HTTP_HOST} !^www\. [OR,NC]
RewriteCond %{THE_REQUEST} /[^.\s]+\.html [NC]
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+)$ [NC]
RewriteRule ^(.*?)(?:\.html)?$ https://www.%1/$1 [L,R=301,NC]

RewriteCond %{DOCUMENT_ROOT}/$1.html -f
RewriteRule ^(.+?)/?$ $1.html [L]

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。