質問編集履歴
4
コメントアウトを変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -114,7 +114,7 @@
|
|
114
114
|
|
115
115
|
DocumentRoot "/path/to/foo_dir"
|
116
116
|
|
117
|
-
Alias /hoo_dir /path/to/hoo_dir
|
117
|
+
Alias /hoo_dir /path/to/hoo_dir # ⇦ 追加①
|
118
118
|
|
119
119
|
</VirtualHost>
|
120
120
|
|
@@ -128,7 +128,7 @@
|
|
128
128
|
|
129
129
|
DocumentRoot "/path/to/hoge_dir"
|
130
130
|
|
131
|
-
Alias /hoo_dir /path/to/hoo_dir
|
131
|
+
Alias /hoo_dir /path/to/hoo_dir # ⇦ 追加②
|
132
132
|
|
133
133
|
</VirtualHost>
|
134
134
|
|
3
最終的な設定方法を追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -93,3 +93,47 @@
|
|
93
93
|
- localhost:9999/hoo_dir/sub.php
|
94
94
|
|
95
95
|
- localhost:9998/hoo_dir/sub.php
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
### 最終的な設定方法
|
102
|
+
|
103
|
+
```ここに言語を入力
|
104
|
+
|
105
|
+
#MAMP/conf/apache/extra/httpd-vhosts.conf
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
Listen 9999
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
<VirtualHost *:9999>
|
114
|
+
|
115
|
+
DocumentRoot "/path/to/foo_dir"
|
116
|
+
|
117
|
+
Alias /hoo_dir /path/to/hoo_dir // ⇦ 追加①
|
118
|
+
|
119
|
+
</VirtualHost>
|
120
|
+
|
121
|
+
|
122
|
+
|
123
|
+
Listen 9998
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
<VirtualHost *:9998>
|
128
|
+
|
129
|
+
DocumentRoot "/path/to/hoge_dir"
|
130
|
+
|
131
|
+
Alias /hoo_dir /path/to/hoo_dir // ⇦ 追加②
|
132
|
+
|
133
|
+
</VirtualHost>
|
134
|
+
|
135
|
+
|
136
|
+
|
137
|
+
|
138
|
+
|
139
|
+
```
|
2
ディレクトリ構造にhoge_dir追加、バーチャルホストに9998ポートの設定を追加、追加情報を追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
```ここに言語を入力
|
18
18
|
|
19
|
-
// ディレクトリ構造
|
19
|
+
// ディレクトリ構造 (hoge_dirを追加)
|
20
20
|
|
21
21
|
// foo_dirとhoo_dirは、同じ階層のディレクトリ
|
22
22
|
|
@@ -30,7 +30,13 @@
|
|
30
30
|
|
31
31
|
|-- hoo_dir
|
32
32
|
|
33
|
+
| |- sub.php
|
34
|
+
|
35
|
+
|
|
36
|
+
|
37
|
+
|-- hoge_dir
|
38
|
+
|
33
|
-
|-
|
39
|
+
|- main.php
|
34
40
|
|
35
41
|
|
36
42
|
|
@@ -40,7 +46,7 @@
|
|
40
46
|
|
41
47
|
```ここに言語を入力
|
42
48
|
|
43
|
-
//バーチャルホストの設定
|
49
|
+
//バーチャルホストの設定 (バーチャルホスト 9998を追加)
|
44
50
|
|
45
51
|
|
46
52
|
|
@@ -60,6 +66,30 @@
|
|
60
66
|
|
61
67
|
|
62
68
|
|
69
|
+
Listen 9998
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
<VirtualHost *:9998>
|
74
|
+
|
75
|
+
DocumentRoot "/path/to/hoge_dir"
|
76
|
+
|
77
|
+
</VirtualHost>
|
78
|
+
|
79
|
+
|
80
|
+
|
63
81
|
|
64
82
|
|
65
83
|
```
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
### 追加情報(最終的にやりたいこと)
|
88
|
+
|
89
|
+
hoo_dirの内容を、異なるホストで共有で使用したいと考えています。
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
- localhost:9999/hoo_dir/sub.php
|
94
|
+
|
95
|
+
- localhost:9998/hoo_dir/sub.php
|
1
httpd-vhost.confのファイル場所を記載
test
CHANGED
File without changes
|
test
CHANGED
@@ -44,7 +44,7 @@
|
|
44
44
|
|
45
45
|
|
46
46
|
|
47
|
-
#httpd-vhosts.conf
|
47
|
+
#MAMP/conf/apache/extra/httpd-vhosts.conf
|
48
48
|
|
49
49
|
|
50
50
|
|