【发布时间】:2016-03-10 22:01:27
【问题描述】:
我需要.htaccess 的帮助:
强制 http:// 到 https://
与
强制 .html 到 /
到目前为止我所拥有的:
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.html [NC,L]
【问题讨论】: