apache - Redirect from https to http url stored from google -
in search google , found domain url https , not http . example : https://xxxx.com/yyyy/zzzz , not http://xxxx.com/yyyy/zzzz it's possible redirect https http domain xxxx.com ? use centos , apache web server on same server, have certificate https respond https://zzzz.com
carlo
this work mod_rewrite on. put code in .htaccess file @ root of site.
rewriteengine on rewritecond %{https} on rewriterule (.*) http://%{http_host}%{request_uri}
Comments
Post a Comment