2016-01-18 26 views

回答

1

您需要使用mod_rewrite为特定网址启用https。

尝试在htaccess的以下内容:

RewriteEngine on 

RewriteCond %{HTTPS} off 
RewriteRule ^wp-admin/?$ https://%{HTTP_HOST}%{REQUEST_URI} [NC,L,R] 
相关问题