Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将所有 https//panel.mysite.com 重定向到http://panel.mysite.com(HTTPS 到 HTTP),而不影响我的 .htaccess 中的任何其他重定向。我该如何进行?
非常感谢。
将此代码放入您的DOCUMENT_ROOT/.htaccess文件中:
DOCUMENT_ROOT/.htaccess
RewriteEngine On RewriteCond %{HTTPS} on RewriteCond %{HTTP_HOST} ^panel\.mysite\.com$ [NC] RewriteRule ^ http://%{HTTP_HOST}%{REQUEST_URI} [L,NC,R=301]