默认的规则无法有效地申请 到免费的SSL,可以使用以下伪静态.htaccess文件规则

RewriteEngine On

RewriteBase /

# 允许访问.well-known目录用于SSL验证
RewriteRule ^\.well-known/ - [L]

# 处理伪静态,如果文件或目录不存在,则重定向到index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule !.(js|ico|gif|jpe?g|bmp|png|css)$ /index.php [NC,L]