回答編集履歴
2
自動生成してくれるツールを紹介するよう回答を編集しました。
test
CHANGED
@@ -1,15 +1,7 @@
|
|
1
|
-
|
1
|
+
「.htaccess リダイレクト 生成」でGoogle 検索すると自動生成してくれるツールが見つかるので試してみてもいいかもしれません。
|
2
2
|
|
3
|
-
|
3
|
+
[https://www.itjpn.co.jp/mkhtacc/](https://www.itjpn.co.jp/mkhtacc/)
|
4
4
|
|
5
|
-
|
5
|
+
[https://htaccess.cman.jp/explain/redirect.html](https://htaccess.cman.jp/explain/redirect.html)
|
6
6
|
|
7
|
-
```
|
8
|
-
|
9
|
-
```
|
10
|
-
|
11
|
-
RewriteEngine on
|
12
|
-
|
13
|
-
|
7
|
+
[https://rakko.tools/tools/28/](https://rakko.tools/tools/28/)
|
14
|
-
|
15
|
-
```
|
1
修正
test
CHANGED
@@ -5,3 +5,11 @@
|
|
5
5
|
Redirect permanent /top/ /top/test/
|
6
6
|
|
7
7
|
```
|
8
|
+
|
9
|
+
```
|
10
|
+
|
11
|
+
RewriteEngine on
|
12
|
+
|
13
|
+
RewriteRule /top/ /top/test/ [L,R=301]
|
14
|
+
|
15
|
+
```
|