1、打开 Apache配置文件 “Apache/conf/httpd.conf”,按以下修改: 去掉配置项LoadModule rewrite_module modules/mod_rewrite.so 前面的注释#, 找到<Directory> ... </Directory> 字段, 修改其中的 AllowOverride None 为 AllowOverride All。 保存
2、打开站点根目录下的 “ .htaccess ”文件,没有就新建,添加以下内容后保存: RewriteEngine on RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R]
3、重启httpd服务,service httpd restart 使用http重新打开站点,跳转https,Bingo!
平安夜没有事,修修补补,又要过完一年。。。
Views: 184