简体   繁体   中英

Redirect specific host from HTTPS to HTTP

I need to redirect all https//panel.mysite.com to http://panel.mysite.com (HTTPS to HTTP) without affect any other redirections in my .htaccess. How do i proceed?

Thanks a lot.

Put this code in your DOCUMENT_ROOT/.htaccess file:

RewriteEngine On

RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} ^panel\.mysite\.com$ [NC]
RewriteRule ^ http://%{HTTP_HOST}%{REQUEST_URI} [L,NC,R=301]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM