我有这个密码.htaccess
文件,并且在安装ssl证书后面临大量混合内容错误。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteRule ^\\/(fractuosity)([0-9]+)\\/(.*)([0-9]+)\\/(.*)$ ?fractuosity$2=$4&%{QUERY_STRING}[L]
RewriteCond %{HTTP_HOST} celestialspaceindia\\.com [NC]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://celestialspaceindia.com/$1 [R,L]
</IfModule>