Warning: strpos() expects parameter 1 to be string, array given in /home/miyucolor/www/risalog/wordpress/wp-includes/blocks.php on line 50

Warning: strpos() expects parameter 1 to be string, array given in /home/miyucolor/www/risalog/wordpress/wp-includes/blocks.php on line 50

Warning: Cannot modify header information - headers already sent by (output started at /home/miyucolor/www/risalog/wordpress/wp-includes/blocks.php:50) in /home/miyucolor/www/risalog/wordpress/wp-content/plugins/all-in-one-seo-pack/app/Common/Meta/Robots.php on line 89

Warning: Cannot modify header information - headers already sent by (output started at /home/miyucolor/www/risalog/wordpress/wp-includes/blocks.php:50) in /home/miyucolor/www/risalog/wordpress/wp-includes/feed-rss2.php on line 8
WordPress | risalog https://risalog.org Notes on web design, coding. Wed, 07 Oct 2020 07:13:35 +0000 ja hourly 1 https://wordpress.org/?v=5.7.12 .htaccess httpからhttpsにリダイレクト https://risalog.org/htaccess-https/?utm_source=rss&utm_medium=rss&utm_campaign=htaccess-https https://risalog.org/htaccess-https/#respond Wed, 07 Oct 2020 07:12:45 +0000 https://risalog.org/?p=843 .htaccess Options +SymLinksIfOwnerMatchはCPIサーバー用の設定。 WordPress設定 [設定]メニュー→[一般]。「WordPress アドレス (URL)」と「サイトアドレス […]

The post .htaccess httpからhttpsにリダイレクト first appeared on risalog.]]>
.htaccess
Options +SymLinksIfOwnerMatch

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} !=on [NC]
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</IfModule>

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

Options +SymLinksIfOwnerMatchはCPIサーバー用の設定。

WordPress設定

[設定]メニュー→[一般]。
「WordPress アドレス (URL)」と「サイトアドレス (URL)」のhttpをhttpsに書き換える。
「WordPress アドレス (URL)」がWPのディレクトリ。
「サイトアドレス (URL)」がサイトURL。

WordPress アドレス (URL):https://アドレス/wordpress
サイトアドレス (URL):https://アドレス

WordPressサイトを常時SSL化する方法

SSL サーバー証明書

The post .htaccess httpからhttpsにリダイレクト first appeared on risalog.]]>
https://risalog.org/htaccess-https/feed/ 0
WordPressサイトのhttps化後、読み込みcssがhttpから変わらないときのプラグイン https://risalog.org/wordpress-https-plugin/?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-https-plugin https://risalog.org/wordpress-https-plugin/#respond Tue, 08 Sep 2020 07:30:45 +0000 https://risalog.org/?p=358 CPIサーバーでWordPressサイトをhttps化したが、読み込みリンク(css、jsのリンク)がhttpから変わらないときに、プラグインを使用して解決した。 SSL Insecure Content Fixer h […]

The post WordPressサイトのhttps化後、読み込みcssがhttpから変わらないときのプラグイン first appeared on risalog.]]>
CPIサーバーでWordPressサイトをhttps化したが、読み込みリンク(css、jsのリンク)がhttpから変わらないときに、プラグインを使用して解決した。

SSL Insecure Content Fixer

https://wordpress.org/plugins/ssl-insecure-content-fixer/

SSL Insecure Content Fixer 設定

非セキュアコンテンツの修正方法:シンプル
特定のプラグインやテーマの修正:WooCommerce + Google Chrome HTTP_HTTPS のバグ (WooCommerce v2.3.13 で修正)
HTTPS の検出方法:HTTPS を検出する方法がない

WordPressのhttps化(SSL)で、javascriptやcssがhttpから変わらない場合!

The post WordPressサイトのhttps化後、読み込みcssがhttpから変わらないときのプラグイン first appeared on risalog.]]>
https://risalog.org/wordpress-https-plugin/feed/ 0
WordPressテストサイトでWebフォントが表示されないとき https://risalog.org/wordpress-webfont/?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-webfont https://risalog.org/wordpress-webfont/#respond Mon, 24 Aug 2020 04:16:34 +0000 http://risalog.org/?p=16 Webフォントがデスクトップのみ表示されない。 本番サーバーのフォントを読み込んでいるためのセキュリティエラー。同サーバーから読み込むと表示される。 CSS変更前 CSS変更後 【wordprss】ウェブフォントがデスク […]

The post WordPressテストサイトでWebフォントが表示されないとき first appeared on risalog.]]>
Webフォントがデスクトップのみ表示されない。

本番サーバーのフォントを読み込んでいるためのセキュリティエラー。
同サーバーから読み込むと表示される。

CSS変更前

@font-face {
  font-family: 'design_plus';
  src: url('fonts/design_plus.woff?v=1.0');
}

CSS変更後

@font-face {
  font-family: "design_plus";
  src: url('/****/wp-content/themes/****/fonts/design_plus.woff?v=1.0') ;
}

【wordprss】ウェブフォントがデスクトップのみで表示されなくなりました

The post WordPressテストサイトでWebフォントが表示されないとき first appeared on risalog.]]>
https://risalog.org/wordpress-webfont/feed/ 0