質問編集履歴

2

fanctions.php記述を追記

2021/07/05 01:46

投稿

mia330
mia330

スコア1

test CHANGED
File without changes
test CHANGED
@@ -80,6 +80,24 @@
80
80
 
81
81
 
82
82
 
83
+ fanctions.phpに書くのも試しました。下記の通りです。
84
+
85
+ function force_https_redirect() {
86
+
87
+ if ( !is_ssl() ) {
88
+
89
+ wp_redirect( 'https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'], 301 );
90
+
91
+ }
92
+
93
+ }
94
+
95
+ add_action ( 'template_redirect', 'force_https_redirect', 1 );
96
+
97
+
98
+
99
+ やはりダメでした。
100
+
83
101
  何か解決策はありませんでしょうか?
84
102
 
85
103
 

1

試したことなど追記しました

2021/07/05 01:46

投稿

mia330
mia330

スコア1

test CHANGED
File without changes
test CHANGED
@@ -58,6 +58,28 @@
58
58
 
59
59
 
60
60
 
61
+ <Files ~ "^.(htaccess|htpasswd)$">
62
+
63
+ deny from all
64
+
65
+ </Files>
66
+
67
+ Options -Indexes
68
+
69
+ Redirect permanent http://大元URL/ https://大元URL/
70
+
71
+ Redirect permanent http://大元URL/サブ1/ https://大元URL/サブ1/
72
+
73
+ Redirect permanent http://大元URL/サブ2/ https://大元URL/サブ2/
74
+
75
+ order deny,allow
76
+
77
+
78
+
79
+ このような記述も試してみましたがダメでした。
80
+
81
+
82
+
61
83
  何か解決策はありませんでしょうか?
62
84
 
63
85
 
@@ -66,4 +88,10 @@
66
88
 
67
89
 
68
90
 
69
- ここより詳細な情報を記載ください。
91
+ 大元に記載されているリダイレクトは下記の通りです
92
+
93
+ RewriteEngine On
94
+
95
+ RewriteCond %{SERVER_PORT} 80
96
+
97
+ RewriteRule ^(.*)$ https://URL $1 [R,L]