2016-01-18 60 views

回答

1

您需要使用mod_rewrite爲特定網址啓用https。

嘗試在htaccess的以下內容:

RewriteEngine on 

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