apache開啓http到https的跳轉

apache的配置(httpd.conf)

  1. 打開AllowOverride None變爲AllowOverride All apache

  2. 2.去掉註釋,開啓LoadModule rewrite_module modules/mod_rewrite.so 
    網站根目錄下建立.htaccess文件ide


網站根目錄下建立.htaccess文件

RewriteEngine on//開啓重定向引擎網站

RewriteBase / #我這行是沒有配置
RewriteCond %{SERVER_PORT} !^443$//非443端口的數據所有進行重定向
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R]//把重定向的內容定向到httpsspa

相關文章
相關標籤/搜索