質問編集履歴

2

動的について追加

2017/10/23 07:08

投稿

oyashiro
oyashiro

スコア37

test CHANGED
File without changes
test CHANGED
@@ -4,11 +4,11 @@
4
4
 
5
5
  やりたいことは
6
6
 
7
- http://www.example.com/1.html を http://www.example.com/11.html へリダイレクト、
7
+ http://www.example.com/?act=1 を http://www.example.com/11.html へリダイレクト、
8
8
 
9
- http://www.example.com/2.html を http://www.example.com/22.html へリダイレクト
9
+ http://www.example.com/?act=2 を http://www.example.com/22.html へリダイレクト
10
10
 
11
- http://www.example.com/3.html を http://www.example.com/33.html へリダイレクトです。
11
+ http://www.example.com/?act=3 を http://www.example.com/33.html へリダイレクトです。
12
12
 
13
13
 
14
14
 
@@ -42,11 +42,11 @@
42
42
 
43
43
 
44
44
 
45
- RewriteRule ^1.html$ http://www.example.com/11.html [R=301]
45
+ RewriteRule ^?act=11$ http://www.example.com/11.html [R=301]
46
46
 
47
- RewriteRule ^2.html$ http://www.example.com/22.html [R=301]
47
+ RewriteRule ^?act=22$ http://www.example.com/22.html [R=301]
48
48
 
49
- RewriteRule ^3.html$ http://www.example.com/33.html [R=301,L]
49
+ RewriteRule ^?act=33$ http://www.example.com/33.html [R=301,L]
50
50
 
51
51
 
52
52
 

1

コード修正

2017/10/23 07:08

投稿

oyashiro
oyashiro

スコア37

test CHANGED
File without changes
test CHANGED
@@ -4,11 +4,11 @@
4
4
 
5
5
  やりたいことは
6
6
 
7
- http://●●.jp/1 を http://●●.co.jp/1 へリダイレクト、
7
+ http://www.example.com/1.html を http://www.example.com/11.html へリダイレクト、
8
8
 
9
- http://●●.jp/2 を http://●●.co.jp/2 へリダイレクト
9
+ http://www.example.com/2.html を http://www.example.com/22.html へリダイレクト
10
10
 
11
- http://●●.jp/3 を http://●●.co.jp/3 へリダイレクトです。
11
+ http://www.example.com/3.html を http://www.example.com/33.html へリダイレクトです。
12
12
 
13
13
 
14
14
 
@@ -38,15 +38,15 @@
38
38
 
39
39
  RewriteCond %{REQUEST_FILENAME} !^(.*).(gif|png|jpe?g|css|ico|js|svg)$ [NC]
40
40
 
41
- RewriteRule ^(.*)$ index.php [QSA,L]
41
+ RewriteRule ^(.*)$ index.php [QSA]
42
42
 
43
43
 
44
44
 
45
- RewriteRule ^http://●●.jp/1$ http://●●.co.jp/1 [R=301,L]
45
+ RewriteRule ^1.html$ http://www.example.com/11.html [R=301]
46
46
 
47
- RewriteRule ^http://●●.jp/2$ http://●●.co.jp/2 [R=301,L]
47
+ RewriteRule ^2.html$ http://www.example.com/22.html [R=301]
48
48
 
49
- RewriteRule ^http://●●.jp/3$ http://●●.co.jp/3 [R=301,L]
49
+ RewriteRule ^3.html$ http://www.example.com/33.html [R=301,L]
50
50
 
51
51
 
52
52