質問編集履歴
5
内容更新
test
CHANGED
File without changes
|
test
CHANGED
@@ -123,3 +123,17 @@
|
|
123
123
|
RewriteRule ^(.*)index.php$ https://example.jp/$1 [R=301,L]
|
124
124
|
|
125
125
|
```
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
追記:試したコード内容
|
130
|
+
|
131
|
+
-----
|
132
|
+
|
133
|
+
Options +FollowSymLinks
|
134
|
+
|
135
|
+
RewriteEngine on
|
136
|
+
|
137
|
+
RewriteCond %{HTTP_HOST} ^www.example.jp/$
|
138
|
+
|
139
|
+
RewriteRule ^(.*)$ https://example.jp/$1 [R=301,L]
|
4
例示ドメインに変更致しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -6,9 +6,7 @@
|
|
6
6
|
|
7
7
|
HPのトップが同じ内容で6種類のURLが存在していました(質問下の詳細を参照)。
|
8
8
|
|
9
|
-
これを**全て【https://
|
9
|
+
これを**全て【https://example.jp】へ正規化したいと思っています。**
|
10
|
-
|
11
|
-
※sansansannanaは仮で本来はこれにページ名が入ります。
|
12
10
|
|
13
11
|
|
14
12
|
|
@@ -16,7 +14,7 @@
|
|
16
14
|
|
17
15
|
|
18
16
|
|
19
|
-
**【https://www.
|
17
|
+
**【https://www.example.jp】▶【https://example.jp】**
|
20
18
|
|
21
19
|
への301転送だけができませんでした。
|
22
20
|
|
@@ -24,7 +22,7 @@
|
|
24
22
|
|
25
23
|
|
26
24
|
|
27
|
-
他のURLについてはすべて【https://
|
25
|
+
他のURLについてはすべて【https://example.jp】へ正規化できています。
|
28
26
|
|
29
27
|
|
30
28
|
|
@@ -38,13 +36,13 @@
|
|
38
36
|
|
39
37
|
下記に対象のURL(仮)と現在の《.htaccess》の内容について詳細の書かせて頂いてます。
|
40
38
|
|
41
|
-
宜しくお願いたします
|
39
|
+
宜しくお願いたします。
|
42
40
|
|
43
41
|
|
44
42
|
|
45
43
|
また、このHPは作成当時、WordPressで作成しているみたいで(担当者不明)
|
46
44
|
|
47
|
-
もともと《.htaccess》内にWordPress用?のコードも書かれていましたが一回このコード内容は伏せておきます。
|
45
|
+
もともと《.htaccess》内にWordPress用?のコードも書かれていましたが一回このコード内容は伏せておきます※必要情報であれば、開示致します。
|
48
46
|
|
49
47
|
|
50
48
|
|
@@ -56,23 +54,23 @@
|
|
56
54
|
|
57
55
|
|
58
56
|
|
59
|
-
対象URL
|
57
|
+
対象URL
|
60
58
|
|
61
59
|
-----------------------------
|
62
60
|
|
63
61
|
```
|
64
62
|
|
65
|
-
https://
|
63
|
+
https://example.jp ◀これに正規化
|
66
64
|
|
67
|
-
https://www.
|
65
|
+
https://www.example.jp ◀移動できない
|
68
66
|
|
69
|
-
https://
|
67
|
+
https://example.jp/index.html ◀完了
|
70
68
|
|
71
|
-
https://www.
|
69
|
+
https://www.example.jp/index.html ◀完了
|
72
70
|
|
73
|
-
https://
|
71
|
+
https://example.jp/index.php ◀完了
|
74
72
|
|
75
|
-
https://www.
|
73
|
+
https://www.example.jp/index.php ◀完了
|
76
74
|
|
77
75
|
```
|
78
76
|
|
@@ -92,7 +90,7 @@
|
|
92
90
|
|
93
91
|
RewriteCond %{HTTPS} off
|
94
92
|
|
95
|
-
RewriteRule ^(.*)$ https://
|
93
|
+
RewriteRule ^(.*)$ https://example.jp/$1 [R=301,L]
|
96
94
|
|
97
95
|
|
98
96
|
|
@@ -100,9 +98,9 @@
|
|
100
98
|
|
101
99
|
RewriteEngine on
|
102
100
|
|
103
|
-
RewriteCond %{HTTP_HOST} ^www.
|
101
|
+
RewriteCond %{HTTP_HOST} ^www.example.jp/$
|
104
102
|
|
105
|
-
RewriteRule ^(.*)$ https://
|
103
|
+
RewriteRule ^(.*)$ https://example.jp/$1 [R=301,L]
|
106
104
|
|
107
105
|
|
108
106
|
|
@@ -112,7 +110,7 @@
|
|
112
110
|
|
113
111
|
RewriteCond %{THE_REQUEST} ^.*/index.html
|
114
112
|
|
115
|
-
RewriteRule ^(.*)index.html$ https://
|
113
|
+
RewriteRule ^(.*)index.html$ https://example.jp/$1 [R=301,L]
|
116
114
|
|
117
115
|
|
118
116
|
|
@@ -122,6 +120,6 @@
|
|
122
120
|
|
123
121
|
RewriteCond %{THE_REQUEST} ^.*/index.php
|
124
122
|
|
125
|
-
RewriteRule ^(.*)index.php$ https://
|
123
|
+
RewriteRule ^(.*)index.php$ https://example.jp/$1 [R=301,L]
|
126
124
|
|
127
125
|
```
|
3
誤字のため修正致しました。
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
複数URLの正規化について
|
test
CHANGED
File without changes
|
2
誤字のため修正致しました。
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
複数URLの正規化について
|
1
|
+
さn複数URLの正規化について
|
test
CHANGED
@@ -102,7 +102,7 @@
|
|
102
102
|
|
103
103
|
RewriteCond %{HTTP_HOST} ^www.sansansannana.jp/$
|
104
104
|
|
105
|
-
RewriteRule ^(.*)$ https://san
|
105
|
+
RewriteRule ^(.*)$ https://sansansannana.jp/$1 [R=301,L]
|
106
106
|
|
107
107
|
|
108
108
|
|
1
誤字のため修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -92,7 +92,7 @@
|
|
92
92
|
|
93
93
|
RewriteCond %{HTTPS} off
|
94
94
|
|
95
|
-
RewriteRule ^(.*)$ https://san
|
95
|
+
RewriteRule ^(.*)$ https://sansansannana.jp/$1 [R=301,L]
|
96
96
|
|
97
97
|
|
98
98
|
|
@@ -100,7 +100,7 @@
|
|
100
100
|
|
101
101
|
RewriteEngine on
|
102
102
|
|
103
|
-
RewriteCond %{HTTP_HOST} ^www.san
|
103
|
+
RewriteCond %{HTTP_HOST} ^www.sansansannana.jp/$
|
104
104
|
|
105
105
|
RewriteRule ^(.*)$ https://sanmikouan.jp/$1 [R=301,L]
|
106
106
|
|
@@ -112,7 +112,7 @@
|
|
112
112
|
|
113
113
|
RewriteCond %{THE_REQUEST} ^.*/index.html
|
114
114
|
|
115
|
-
RewriteRule ^(.*)index.html$ https://san
|
115
|
+
RewriteRule ^(.*)index.html$ https://sansansannana.jp/$1 [R=301,L]
|
116
116
|
|
117
117
|
|
118
118
|
|
@@ -122,6 +122,6 @@
|
|
122
122
|
|
123
123
|
RewriteCond %{THE_REQUEST} ^.*/index.php
|
124
124
|
|
125
|
-
RewriteRule ^(.*)index.php$ https://san
|
125
|
+
RewriteRule ^(.*)index.php$ https://sansansannana.jp/$1 [R=301,L]
|
126
126
|
|
127
127
|
```
|