回答編集履歴

1

追記

2018/12/14 04:16

投稿

hrsi_teratail
hrsi_teratail

スコア93

test CHANGED
@@ -5,3 +5,61 @@
5
5
 
6
6
 
7
7
  みなさま、ありがとうございます。
8
+
9
+
10
+
11
+ 追加した内容は、
12
+
13
+
14
+
15
+ httpd.con
16
+
17
+ ```
18
+
19
+ LoadModule php7_module "C:/PHP72/php7apache2_4.dll"
20
+
21
+ AddHandler application/x-httpd-php .php
22
+
23
+
24
+
25
+ PHPIniDir "C:/php72"
26
+
27
+
28
+
29
+ ```
30
+
31
+
32
+
33
+ httpd-vhost.conf
34
+
35
+ ```
36
+
37
+ <VirtualHost *:80>
38
+
39
+ DocumentRoot "C:/www/waterbus/public"
40
+
41
+ ServerName waterbus.local
42
+
43
+ DirectoryIndex index.html index.php
44
+
45
+ ErrorLog C:/www/waterbus_error_log
46
+
47
+ CustomLog C:/www/waterbus_access_log combined
48
+
49
+
50
+
51
+ <Directory "C:/www/waterbus/public">
52
+
53
+ AllowOverride All
54
+
55
+ Options All
56
+
57
+ Require all granted
58
+
59
+ </Directory>
60
+
61
+ </VirtualHost>
62
+
63
+
64
+
65
+ ```