配置.htaccess文件解決網站整體https跳轉方法.網站安裝了SSL安全證書(PHP網站),訪問http時僅首頁跳轉到https。想要整站所有文件及文件夾跳轉的話,需要在網站根目錄配置文件.htaccess。...
配置.htaccess文件解決網站整體https跳轉方法.網站安裝了SSL安全證書(PHP網站),訪問http時僅首頁跳轉到https。想要整站所有文件及文件夾跳轉的話,需要在網站根目錄配置文件.htaccess。文件內容如下:
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
RewriteCond %{SERVER_PORT} !^443$
RewriteCond %{REQUEST_URI} !^/tz.php
RewriteRule (.*) https://%{SERVER_NAME}/$1 [R]
</IfModule>