質問編集履歴

2

ソースを追加

2020/04/20 02:50

投稿

nyoro
nyoro

スコア16

test CHANGED
File without changes
test CHANGED
@@ -33,3 +33,115 @@
33
33
  ##ブラウザエラー画面
34
34
 
35
35
  ![イメージ説明](5d6323f2b5151676fcb65ae2db6f5519.png)
36
+
37
+
38
+
39
+ ##httpd.confのDocumentRoot周りの記述
40
+
41
+ ```
42
+
43
+ #
44
+
45
+ # DocumentRoot: The directory out of which you will serve your
46
+
47
+ # documents. By default, all requests are taken from this directory, but
48
+
49
+ # symbolic links and aliases may be used to point to other locations.
50
+
51
+ #
52
+
53
+ DocumentRoot "C:/xampp/htdocs"
54
+
55
+ <Directory "C:/xampp/htdocs">
56
+
57
+ #
58
+
59
+ # Possible values for the Options directive are "None", "All",
60
+
61
+ # or any combination of:
62
+
63
+ # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
64
+
65
+ #
66
+
67
+ # Note that "MultiViews" must be named *explicitly* --- "Options All"
68
+
69
+ # doesn't give it to you.
70
+
71
+ #
72
+
73
+ # The Options directive is both complicated and important. Please see
74
+
75
+ # http://httpd.apache.org/docs/2.4/mod/core.html#options
76
+
77
+ # for more information.
78
+
79
+ #
80
+
81
+ Options Indexes FollowSymLinks Includes ExecCGI
82
+
83
+
84
+
85
+ #
86
+
87
+ # AllowOverride controls what directives may be placed in .htaccess files.
88
+
89
+ # It can be "All", "None", or any combination of the keywords:
90
+
91
+ # AllowOverride FileInfo AuthConfig Limit
92
+
93
+ #
94
+
95
+ AllowOverride All
96
+
97
+
98
+
99
+ #
100
+
101
+ # Controls who can get stuff from this server.
102
+
103
+ #
104
+
105
+ Require all granted
106
+
107
+ </Directory>
108
+
109
+ ```
110
+
111
+
112
+
113
+ ##test.html
114
+
115
+ ```html
116
+
117
+ <!DOCTYPE html>
118
+
119
+ <html lang="ja">
120
+
121
+
122
+
123
+ <head>
124
+
125
+ <meta charset="UTF-8">
126
+
127
+ <title>Document</title>
128
+
129
+ </head>
130
+
131
+
132
+
133
+ <body>
134
+
135
+ <p>
136
+
137
+ hogehogehogehogehoge
138
+
139
+ </p>
140
+
141
+ </body>
142
+
143
+
144
+
145
+ </html>
146
+
147
+ ```

1

画像を追加

2020/04/20 02:50

投稿

nyoro
nyoro

スコア16

test CHANGED
File without changes
test CHANGED
@@ -13,3 +13,23 @@
13
13
  ・firefox,IE等別ブラウザでも試してみる
14
14
 
15
15
  ・xampp自体、PCを再起動する
16
+
17
+
18
+
19
+ ##XAMPPのコントロールパネル
20
+
21
+
22
+
23
+ ![イメージ説明](d8382a4dd622318dac214be0ba78c797.png)
24
+
25
+
26
+
27
+ ##XAMPPのファイル格納ディレクトリ
28
+
29
+ ![イメージ説明](b54614c023e3870c3ff3f80551bf1dfe.png)
30
+
31
+
32
+
33
+ ##ブラウザエラー画面
34
+
35
+ ![イメージ説明](5d6323f2b5151676fcb65ae2db6f5519.png)