[WordPres][Windows Azure Web Sites] 管理画面を SSL 対応する
WordPress を SSL 対応します。
SSL ログイン・管理画面アクセスを強制する
SSL を強制する FORCE_SSL_ADMIN 定数が用意されています。
wp-config.php に ABSPATH define より前に挿入します。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define('FORCE_SSL_ADMIN', true); | |
/** Absolute path to the WordPress directory. */ | |
if ( !defined('ABSPATH') ) | |
define('ABSPATH', dirname(__FILE__) . '/'); |
ログインのみ SSL アクセスするには、FORCE_SSL_LOGIN 定数を使います。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define('FORCE_SSL_LOGIN', true); |
詳しくは、管理画面での SSL 通信 – WordPress Codex 日本語版
Windows Azure Web サイト で SSL
azurewebsites.net のドメインでは標準で SSL がサポートされています!
既定の 'azurewebsites.net’ ドメインに対して SSL 接続が提供されますか?
はい。Web サイトでは、’azurewebsites.net’ ドメインのすべての URL に対して追加の料金なしで SSL 接続を提供しています。Web サイト (https://
.azurewebsites.net) に安全にアクセスしてください。
詳しくは、料金詳細 – Web サイト | Windows Azure
「SSL 接続」の項目があります。