回答編集履歴

2

修正

2020/06/01 20:35

投稿

退会済みユーザー
test CHANGED
@@ -36,7 +36,7 @@
36
36
 
37
37
 
38
38
 
39
- 例C)「http://hogehoge.com」にアクセスした場合
39
+ > 例C)「http://hogehoge.com」にアクセスした場合
40
40
 
41
41
  ①app/application/index.phpの処理を実行する。
42
42
 

1

追記

2020/06/01 20:35

投稿

退会済みユーザー
test CHANGED
@@ -1 +1,53 @@
1
1
  `app/application/index.php`に意図した処理を記述するだけかと。
2
+
3
+
4
+
5
+ **追記**
6
+
7
+ > 例A)「http://hogehoge.com/bbb/index」にアクセスした場合
8
+
9
+ ①app/application/index.phpの処理を実行する。
10
+
11
+ ②$_GET['url']の内容:'bbb/index'
12
+
13
+ ③app/application/index.phpの処理で、app/application/controllers/bbb.phpのindex()関数を実行する。
14
+
15
+ ④表示URLが「http://hogehoge.com/bbb/index」
16
+
17
+
18
+
19
+ 色々気になる点はありますが、仕様を満たしていると判断されている かつ 本質問から離れるため言及しません。
20
+
21
+
22
+
23
+ > 例B)「http://hogehoge.com/top/index」にアクセスした場合
24
+
25
+ ①app/application/index.phpの処理を実行する。
26
+
27
+ ②$_GET['url']の内容:'top/index'
28
+
29
+ ③app/application/index.phpの処理で、app/application/controllers/top.phpのindex()関数を実行する。
30
+
31
+ ④表示URLが「http://hogehoge.com」
32
+
33
+
34
+
35
+ `http://hogehoge.com/top/index`へのアクセスを、`app/application/index.php`またはその先で、`http://hogehoge.com`へリダイレクトさせてあげると良いです。
36
+
37
+
38
+
39
+ 例C)「http://hogehoge.com」にアクセスした場合
40
+
41
+ ①app/application/index.phpの処理を実行する。
42
+
43
+ ②$_GET['url']の内容:'top/index'
44
+
45
+ ③app/application/index.phpの処理で、app/application/controllers/top.phpのindex()関数を実行する。
46
+
47
+ ④表示URLが「http://hogehoge.com」
48
+
49
+
50
+
51
+ `.htaccess`へ`http://hogehoge.com`へアクセスが有った場合の処理を記述する必要があります。
52
+
53
+ `app/application/index.php`にも処理を記述する必要です。その際、ループしないように注意してください。