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