質問編集履歴
1
書式の改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,9 +12,11 @@
|
|
12
12
|
|
13
13
|
以下を試しましたが、
|
14
14
|
|
15
|
-
https://新ドメイン/ディレクトリ に
|
15
|
+
https://新ドメイン/ディレクトリ に転送されてしまいます。
|
16
16
|
|
17
17
|
|
18
|
+
|
19
|
+
```htaccess
|
18
20
|
|
19
21
|
RewriteEngine on
|
20
22
|
|
@@ -22,6 +24,22 @@
|
|
22
24
|
|
23
25
|
RewriteRule ^ディレクトリ名/(.*)$ https:// 新ドメイン/$1 [R=301,L]
|
24
26
|
|
27
|
+
```
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
```htaccess
|
32
|
+
|
33
|
+
RewriteEngine On
|
34
|
+
|
35
|
+
RewriteCond %{HTTPS} !=on
|
36
|
+
|
37
|
+
RewriteRule ^(ディレクトリ名/.*)$ https://新ドメイン/$1 [R=301,L]
|
38
|
+
|
39
|
+
```
|
40
|
+
|
25
41
|
|
26
42
|
|
27
43
|
ご教示いただけると幸いです。
|
44
|
+
|
45
|
+
よろしくお願いします
|