在htaccess中强制将https和.html重写为.php

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在htaccess中强制将https和.html重写为.php相关的知识,希望对你有一定的参考价值。

This rewrite will not work on WordPress. It forces .htm and .html files that no longer exist to go to the new .php versions of the pages.
  1. RewriteEngine On
  2. RewriteCond %{HTTPS} !=on
  3. RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R=301,L]
  4.  
  5. RewriteRule ^(.*).htm /$1.php [R=301,L]
  6. RewriteRule ^(.*).html /$1.php [R=301,L]

以上是关于在htaccess中强制将https和.html重写为.php的主要内容,如果未能解决你的问题,请参考以下文章

在htaccess中强制将https和.html重写为.php

htaccess:将所有域(https和http)重定向到新域

通过 htaccess 强制非 www 和 https

强制通过htaccess文件重定向到https

使用 .htaccess 将 HTTP 流量强制为 HTTPS

.htaccess 使用 SSL/HTTPS 将 www 重定向到非 www