mod 重写 - 如何对此 .htaccess 进行更改以在 SSL 中加载我的网站



我的.htaccess文件如下所示

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

最近我安装了SSL,所以我需要确保我的客户在HTTPS中连接到我的网站。那么我需要在此代码中进行哪些更改才能在 SSL 中加载我的网站

要在SSL中加载您的网站,您可以使用

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
#http to https
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [NE,L,R]
###########
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

相关内容

  • 没有找到相关文章

最新更新