我正在使用WordPress,并且在我的.htaccess文件中,我有强制执行https重定向的规则。
它在任何地方都可以使用,但我不明白为什么它不能在图像和资产(例如CSS文件)上使用。
我的.htaccess:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Options -MultiViews
Options -Indexes
我尝试了不同的组合,在WordPress规则内,根据端口设置了条件。